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”);