Write variable names in JavaScript in camelCase. In camelCase, multi-word variable names have the first word in lowercase and the first letter of each subsequent word is capitalized.
`so this is what I wrote but still giving me an error. So not sure what am I doing wrong!! I also deleted all the wording on the top and spaces
What am I doing that is so wrong?`
Thanks in advance.
`// Assignments
var studlyCapVar = 10;
var properCamelCase = "A String";
var titleCaseOver = 9000;
and this is the results:
// running tests
studlyCapVar should use camelCase in both declaration and assignment sections.
properCamelCase should use camelCase in both declaration and assignment sections.
titleCaseOver should use camelCase in both declaration and assignment sections.
// tests completed`
```````````