Write simple .camelCase method camelCase
for strings. All words must have their first letter capitalized without spaces.
For instance:
camelCase("hello case"); // => "HelloCase"
camelCase("camel case word"); // => "CamelCaseWord"
Write simple .camelCase method camelCase
for strings. All words must have their first letter capitalized without spaces.
For instance:
camelCase("hello case"); // => "HelloCase"
camelCase("camel case word"); // => "CamelCaseWord"