JSFiddle - React, Tailwind, and code Playground

JavaScript

function titleCase (str) {
  return str.toLowerCase().replace(/(^|\s)(\w)/g, function(x) {
    return x.toUpperCase();
  });
}

alert(titleCase('This is a simple test.'));