Skip to content

Instantly share code, notes, and snippets.

@SonyaMoisset
Created April 6, 2016 06:37
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save SonyaMoisset/aa79f51d78b39639430661c03d9b1058 to your computer and use it in GitHub Desktop.
Save SonyaMoisset/aa79f51d78b39639430661c03d9b1058 to your computer and use it in GitHub Desktop.
function titleCase(str) {
str = str.toLowerCase().split(' ');
for (var i = 0; i < str.length; i++) {
str[i] = str[i].charAt(0).toUpperCase() + str[i].slice(1);
}
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