Here you can find the source of capitalize()
String.prototype.capitalize = function() { return this.charAt(0).toUpperCase() + this.slice(1); } var getCurrentDate = function() { var today = new Date(); var dd = today.getDate(); var mm = today.getMonth()+1; //January is 0! var yyyy = today.getFullYear(); if(dd<10) { dd='0'+dd }/*from w ww . j av a2 s .co m*/ if(mm<10) { mm='0'+mm } today = yyyy+'-'+mm+'-'+dd; return today; }
String.prototype.capitalize = function() { return this.toUpperCase()
String.prototype.capitalize = function() { return this.charAt(0).toUpperCase() + this.substring(1).toLowerCase(); };
String.prototype.capitalize = function() { return this.charAt(0).toUpperCase() + this.slice(1); };
String.prototype.capitalize = function() { return this.charAt(0).toUpperCase() + this.substring(1).toLowerCase(); };
String.prototype.capitalize = function() { sentence = this.split(' '); for(word in sentence) { sentence[word] = sentence[word].ucfirst(); return sentence.join(' ');
String.prototype.capitalize = function() { return this.replace(/\b\w/g, l => l.toUpperCase())
String.prototype.capitalize = function() { return this.replace(/([\s\-_]|^)./g, function (match) { return match.toUpperCase(); });
String.prototype.capitalize = function()
this.charAt(0).toUpperCase() + this.substring(1).toLowerCase();
String.prototype.capitalize = function () { return this[0].toUpperCase() + this.slice(1).toLowerCase(); };