Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 471 Bytes

README.md

File metadata and controls

14 lines (12 loc) · 471 Bytes

CamelCase Method

6 kyu link to kata
my solution

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:

"hello case".camelCase() => HelloCase
"camel case word".camelCase() => CamelCaseWord

Don't forget to rate this kata! Thanks :)