CamelCase

Challenge 📝

Resources 📚

Given is a string n. The task is to return the sentence in CamelCase notation. This means that each new word is capitalized and immediately appended to the old word. Start with a lowercase letter.

#JavaScript Strings

Medium

unsolved

function camelCase(n) {
}
Test Cases
Console Logs
JS Errors
Run Code!
flag