Node.js examples for String:Case
Convert first String letter to upper case
String.prototype.firstToUpperCase = function() { return this.substr(0, 1).toUpperCase() + this.substr(1); };