Javascript String firstToUpper()
firstToUpper()
String.prototype.firstToUpper = function() { return this.charAt(0).toUpperCase() + this.slice(1); }