Node.js examples for String:Case
Upper case first letter in a String
//----- (c)GPL, apv String.prototype.ucFirst = function () { return this.substr(0,1).toUpperCase() + this.substr(1,this.length); }