Capitalise first letter of a word
The script enables to transform the first letter of a word into capital case in javascript.
function titleCaseWord(word) {
if (!word){
return word;
}
return word[0].toUpperCase() + word.substr(1).toLowerCase();
}
titleCaseWord('hello world);
Result: 'Hello world';
Below is an example of how to use it :