Create CamelCase

pull/2/head
Raphael 2019-09-22 19:22:39 +02:00 committed by GitHub
parent 26c7a5b9bc
commit 3946ff26a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -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
```