/ Published in: JavaScript
Expand |
Embed | Plain Text
String.prototype.ucFirst = function() { return this.charAt(0).toUpperCase() + this.substring(1); }
You need to login to post a comment.
String.prototype.ucFirst = function() { return this.charAt(0).toUpperCase() + this.substring(1); }
You need to login to post a comment.