To Camel Case

Converts a string to camel casing.

Contributed by @itsbrunodev

javascript
function toCamelCase(str) {
  return str.replace(/\W+(.)/g, (match, chr) => chr.toUpperCase());
}
javascript
toCamelCase("hello world"); // "helloWorld"

Keywords

string
casing