Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 323 Bytes

(6 kyu) CamelCase Method.md

File metadata and controls

12 lines (8 loc) · 323 Bytes

CamelCase Method (6 kyu)

https://www.codewars.com/kata/camelcase-method/

Write simple .camelcase method (camel_case function in PHP) for strings. All words must have their first letter capitalized without spaces.

Example:

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