JSFiddle - React, Tailwind, and code Playground
JavaScript
var str = "this is sample text";
console.log(toTitleCase(str));
function toTitleCase(str)
{
return str.replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();});
}