capitalize sentence code example
Example 1: How do you make each word in a text start with a capital letter?
h1 {
text-transform: capitalize;
}
Example 2: capitalize
function capitalize1(str) {
const arrOfWords = str.split(" ");
const arrOfWordsCased = [];
for (let i = 0; i < arrOfWords.length; i++) {
const word = arrOfWords[i];
arrOfWordsCased.push(word[0].toUpperCase() + word.slice(1).toLowerCase());
}
return arrOfWordsCased.join(" ");
}