Skip to content

Instantly share code, notes, and snippets.

Created December 7, 2015 06:17
Show Gist options
  • Save anonymous/af231d15fb54475d1eef to your computer and use it in GitHub Desktop.
Save anonymous/af231d15fb54475d1eef to your computer and use it in GitHub Desktop.
http://www.freecodecamp.com/kkas 's solution for Bonfire: Title Case a Sentence
// Bonfire: Title Case a Sentence
// Author: @kkas
// Challenge: http://www.freecodecamp.com/challenges/bonfire-title-case-a-sentence#
// Learn to Code at Free Code Camp (www.freecodecamp.com)
function titleCase(str) {
var newStrAry = str.split(' ').map(function(word) {
return word.charAt(0).toUpperCase() + word.slice(1).toLowerCase();
});
return newStrAry.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