Skip to content

Instantly share code, notes, and snippets.

@dev0x10
Created January 18, 2015 14:00
Show Gist options
  • Select an option

  • Save dev0x10/5646f050467f6ebb2911 to your computer and use it in GitHub Desktop.

Select an option

Save dev0x10/5646f050467f6ebb2911 to your computer and use it in GitHub Desktop.
Javascript string to title case
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