Created
December 7, 2015 09:59
-
-
Save anonymous/0a0aec132ba4d030c68a to your computer and use it in GitHub Desktop.
http://www.freecodecamp.com/patrickcurl 's solution for Bonfire: Title Case a Sentence
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Bonfire: Title Case a Sentence | |
// Author: @patrickcurl | |
// Challenge: http://www.freecodecamp.com/challenges/bonfire-title-case-a-sentence# | |
// Learn to Code at Free Code Camp (www.freecodecamp.com) | |
function titleCase(str) { | |
words = str.split(" "); | |
for(var i=0;i<words.length;i++){ | |
words[i] = words[i].charAt(0).toUpperCase() + words[i].substr(1).toLowerCase(); | |
} | |
return words.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