Quantcast
Channel: freeCodeCamp Challenge Guide: Title Case a Sentence
Viewing all articles
Browse latest Browse all 50

freeCodeCamp Challenge Guide: Title Case a Sentence

$
0
0

Hi there, here is my solution to the problem. Capitalizing the first character of each element of string array ‘str’ then ‘lowercasing’ the other characters in the remainder of each element. Join them all up afterwards…voila!

function titleCase(str) {
str = str.split(’ ');
var strlen = str.length;
var strarr = [];
var strslice = [];

for (var i = 0; i < strlen; i++)
{
strarr[i] = str[i].charAt(0).toUpperCase() + str[i].slice(1).toLowerCase();
}
return strarr.join(" ");
}

titleCase(“I’m a little tea pot”);

Read full topic


Viewing all articles
Browse latest Browse all 50