Skip to content

Instantly share code, notes, and snippets.

@frg
Created January 15, 2016 10:23
Show Gist options
  • Save frg/c707825009cc23c14426 to your computer and use it in GitHub Desktop.
Save frg/c707825009cc23c14426 to your computer and use it in GitHub Desktop.
JS - To Title Case
String.prototype.toTitleCase = function () {
return this
.replace(/\w\S*/g, function(txt){
return txt
.charAt(0)
.toUpperCase() + txt.substr(1).toLowerCase();
});
;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment