Skip to content

Instantly share code, notes, and snippets.

@andrit
Last active October 10, 2018 17:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrit/a5b699aa99315ad822729bd6b767e055 to your computer and use it in GitHub Desktop.
Save andrit/a5b699aa99315ad822729bd6b767e055 to your computer and use it in GitHub Desktop.
uppercase every word in a string
String.prototype.toUpperCaseAll = function () {
return this.split(" ").map( w => w.charAt(0).toUpperCase() + w.substr(1, w.length-1)).join(" ");
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment