Skip to content

Instantly share code, notes, and snippets.

@ceaksan
Created September 18, 2015 14:18
Show Gist options
  • Save ceaksan/9ef5052ba40ea2bb9983 to your computer and use it in GitHub Desktop.
Save ceaksan/9ef5052ba40ea2bb9983 to your computer and use it in GitHub Desktop.
function titleCase(str){
str = str.toLowerCase().split(' ');
/*
str = str.toLowerCase();
str = str.split(' ');
*/
for(var i = 0; i < str.length; i++){
var cF = str[i].charAt(0);
str[i] = str[i].replace(cF, cF.toUpperCase());
}
return str.join(' ');
}
titleCase("I'm a little tea pot", "");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment