Generation

generate functionSat, 19 Nov 2022

Trumpify

function trumpify(string) { return string.replace(/\w\S*/g, function(txt){ return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase(); }); } trumpify("hello"); // => Hello

Javascript
Generate More

Want to kickstart your project?Use the new AI Studio to create your code