Here you can find the source of ucFirst()
//Returns the first character of a string in upper case String.prototype.ucFirst = function(){ //Matches the first word that start a string and returns it in upper case return this.replace(/^\w/, function(x){ return x.toUpperCase(); })/*from ww w. ja v a2s .co m*/ }
String.prototype.ucFirst = function() { return this.substr(0, 1).toUpper() + this.substr(1); };
String.prototype.ucFirst = function () { return this.substr(0,1).toUpperCase()+this.substr(1); };
String.prototype.ucFirst = function(){ result = this.replace(/^\w/g, function(x){ return x.toUpperCase(); }); return result; };
String.prototype.ucFirst = function() { return [this.charAt(0).toUpper(), this.slice(1)].join(''); };
String.prototype.ucFirst = function() { return this.charAt(0).toUpperCase() + this.slice(1);
String.prototype.uc_first = function() { return this.charAt(0).toUpperCase() + this.slice(1); };
String.prototype.ucfirst = function () { return this.charAt(0).toUpperCase() + this.slice(1); };
String.prototype.ucfirst = function() { return this.charAt(0) + this.slice(1);
String.prototype.ucfirst = function() { return this.charAt(0).toUpperCase() + this.slice(1);