Skip to content

Instantly share code, notes, and snippets.

@unknownuser88
Created January 6, 2014 15:50
Show Gist options
  • Save unknownuser88/8284780 to your computer and use it in GitHub Desktop.
Save unknownuser88/8284780 to your computer and use it in GitHub Desktop.
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