-1 |
|
String.prototype.ucFirst = function () {
return this.substr(0,1).toUpperCase() + this.substr(1,this.length);
}
var me = new String('sitemasters')
document.write( me.ucFirst() )
String .prototype .ucFirst = function () { return this .substr(0,1).toUpperCase () + this .substr(1,this .length ); } var me = new String('sitemasters')
|