Skip to content

Instantly share code, notes, and snippets.

@monyskynet
Created September 18, 2013 01:42
Show Gist options
  • Save monyskynet/6603366 to your computer and use it in GitHub Desktop.
Save monyskynet/6603366 to your computer and use it in GitHub Desktop.
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