Converts string to camel case.
string
The string to convert.
Returns the camel cased string.
toCamelCase('Hello, world!')// => 'helloWorld' Copy
toCamelCase('Hello, world!')// => 'helloWorld'
Converts
string
to camel case.