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