Advertisement
OmgImAlexis

Untitled

Apr 11th, 2015
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. String.prototype.capitalizeFirstLetter = function() {
  2. return this.replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();}).replace();
  3. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement