JSFiddle - React, Tailwind, and code Playground

by Manu Vashishtha

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"));