Node.js examples for String:Case
Returns a capitalised version of the string
/**// w w w . j av a2 s . c om * returns a capitalised version of the string * * @return String captialised version */ capitalize: function() { return this.charAt(0).toUpperCase() + this.substring(1).toLowerCase(); },