programming-examples/js/String/Make capitalize the first letter of each word in a string.js

6 lines
237 B
JavaScript
Raw Normal View History

2019-11-15 12:59:38 +01:00
//capitalize_Words
function capitalize_Words(str)
{
return str.replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();});
}
console.log(capitalize_Words('js string exercises'));