+ 2
What is Camel Case ?
2 Answers
+ 5
Camel case is when you are naming something like a function with multiple words to make it easier to read. The first word is all lower case and then each word after that begins with a capital letter.
Example:
Function thisIsCamelCase()
+ 7