Skip to main content

--description--

Return the provided string with the first letter of each word capitalized. Make sure the rest of the word is in lower case.

For the purpose of this exercise, you should also capitalize connecting words like the and of.

--hints--

titleCase("I'm a little tea pot") should return a string.

assert(typeof titleCase("I'm a little tea pot") === 'string');

titleCase("I'm a little tea pot") should return the string I'm A Little Tea Pot.

assert(titleCase("I'm a little tea pot") === "I'm A Little Tea Pot");

titleCase("sHoRt AnD sToUt") should return the string Short And Stout.

assert(titleCase('sHoRt AnD sToUt') === 'Short And Stout');

titleCase("HERE IS MY HANDLE HERE IS MY SPOUT") should return the string Here Is My Handle Here Is My Spout.

assert(
titleCase('HERE IS MY HANDLE HERE IS MY SPOUT') ===
'Here Is My Handle Here Is My Spout'
);

--seed--

--seed-contents--

function titleCase(str) {
return str;
}

titleCase("I'm a little tea pot");

--solutions--

function titleCase(str) {
return str.split(' ').map(word => word.charAt(0).toUpperCase() + word.substring(1).toLowerCase()).join(' ');
}

titleCase("I'm a little tea pot");