Skip to content

Instantly share code, notes, and snippets.

@abehmiel
Created May 25, 2017 14:49
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 abehmiel/2dcd099985b434a738781d7a03d60f60 to your computer and use it in GitHub Desktop.
Save abehmiel/2dcd099985b434a738781d7a03d60f60 to your computer and use it in GitHub Desktop.
Title Case in JS
function toTitleCase(str)
{
return str.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