Categories
Converts a string to camel casing.
Contributed by @itsbrunodev
function toCamelCase(str) { return str.replace(/\W+(.)/g, (match, chr) => chr.toUpperCase()); }
toCamelCase("hello world"); // "helloWorld"