Mon28 Function: String.ucFirstLetter() Posted on Jan 28, 2008 in Code, JavaScript | 0 comments 1234String.prototype.ucFirstLetter = function() { return this.substr(0,1).toUpperCase() + this.substr(1); }
Recent Comments