document.title="New Title";
function toTitles(s){ return s.replace(/wS*/g, function(t) { return t.charAt(0).toUpperCase() + t.substr(1).toLowerCase(); }); }
var str = toTitles('abraham lincoln'); // Abraham Lincoln
// Changing the website's <title>
document.title = "Test";
const docTitle1 = document.querySelector('title');
docTitle1.textContent = 'Document title here';