Here you can find the source of capitalize()
/**/*from w w w .j ava 2 s .c o m*/ * Capitalize a string. * * @return Capitalized string. */ String.prototype.capitalize = function () { return this.charAt(0).toUpperCase() + this.slice(1); };
String.prototype.capitalize = function() { return this.charAt(0).toUpperCase() + this.slice(1);
String.prototype.capitalize = function(){ if( this.length === 0 ) return "" return this.substr( 0, 1).toUpperCase() + this.substr( 1)
String.prototype.capitalize = function() { return this.substring(0,1).toUpperCase() + this.substring(1); };
String.prototype.capitalize = function() { return this.split(' ').map(function(item) { if (!item.length) return ''; return item[0].toUpperCase() + item.substr(1); }).join(' '); }; Storage.prototype.setObject = function(key, value) { this.setItem(key, JSON.stringify(value)); }; ...
String.prototype.capitalize = function() { return this.charAt(0).toUpperCase() + this.slice(1); function generateHashtag (str) { return (str.length > 140 || str.length < 1) ? false : "#" + str.split(" ").map(function(n){ return n.capitalize() }).join(''); console.log(generateHashtag('')); console.log(generateHashtag('Lorne Greene')); console.log(generateHashtag('tina turner')); ...
String.prototype.capitalize = function() { return this.replace(/(^|\s)([a-z])/g, function(m, p1, p2) { return p1 + p2.toUpperCase(); }); };
String.prototype.capitalize = function() { return this.charAt(0).toUpperCase() + this.slice(1); };
String.prototype.capitalize = function(){ return this.replace(/^(.?)/, this.charAt(0).toUpperCase());
String.prototype.capitalize = function() { if (this) { return this.substr(0, 1).toUpperCase() + this.substr(1); } else { return ''; };