capitalize 一文字目を大文字にする

String.prototype.capitalize = function(){
    return this.charAt(0).toUpperCase() + this.slice(1);
}