Skip to content

Instantly share code, notes, and snippets.

@dmidlo
Last active November 22, 2015 23:40
Show Gist options
  • Save dmidlo/2e0623a7a5ccc85ba5f0 to your computer and use it in GitHub Desktop.
Save dmidlo/2e0623a7a5ccc85ba5f0 to your computer and use it in GitHub Desktop.
function titleCase(str) {
str = str.toLowerCase();
var strArray = (str.split(' '));
for(var i = 0; i < strArray.length; i++)
{
strArray[i] = (strArray[i].charAt(0).toUpperCase()) + (strArray[i].substring(1));
}
return(strArray.join(' '));
}
titleCase("I'm a little tea pot shORt And Stout, HERE IS my HANDLE, HERe is My Spout!");
// returns I'm A Little Tea Pot Short And Stout, Here Is My Handle, Here is My Spout!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment