sentence first letter of each word uppercase javascript code example
Example 1: javascript capitalize words
//capitalize only the first letter of the string.
function capitalizeFirstLetter(string) {
return string.charAt(0).toUpperCase() + string.slice(1);
}
//capitalize all words of a string.
function capitalizeWords(string) {
return string.replace(/(?:^|\s)\S/g, function(a) { return a.toUpperCase(); });
};
Example 2: capitalize first letter of each word javascript
const titleCase = function(text) {
let newText = '';
text = text.toLowerCase();
text = text.charAt(0).toUpperCase() + text.slice(1);
for (let i = 0; i < text.length; i++) {
if (text[i] === ' ') {
newText += ' ' + text[i+1].toUpperCase();
i++;
} else {
newText += text[i];
}
}
return newText;
}