diff --git a/javascript/CamelCase/README.md b/javascript/CamelCase/README.md new file mode 100644 index 0000000..69be119 --- /dev/null +++ b/javascript/CamelCase/README.md @@ -0,0 +1,8 @@ +Write simple .camelCase method (camel_case function in PHP, CamelCase in C# or camelCase in Java) for strings. All words must have their first letter capitalized without spaces. + +For instance: + +```js +"hello case".camelCase() // => HelloCase +"camel case word".camelCase() // => CamelCaseWord +```