JSFiddle - React, Tailwind, and code Playground
HTML
<ul id="results"></ul>
JavaScript
function toTitleCase(str) {
var lcStr = str.toLowerCase();
return lcStr.replace(/(?:^|\s)\w/g, function(match) {
return match.toUpperCase();
});
}
alert(toTitleCase("gfhgfhgfh ghgfh gfhgfghgfh"));