camelCase in JavaScript

Tell us what’s happening:

/ running tests

studlyCapVar

should use camelCase in both declaration and assignment sections.

titleCaseOver

should use camelCase in both declaration and assignment sections. // tests completed

Your code so far


// Variable declarations
var studlyCapVar;
var propeCamelCase;
var titleCaseOver; 

// Variable declaration and assignments
var studlyCapVar;
studlyCapVar = 10;
var properCamelCase;
properCamelCase = "A String";
var titleCaseOver;
titleCaseOver = 9000;

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36.

Challenge: Understanding Case Sensitivity in Variables

Link to the challenge:

Hi!
It’s not necessary to declare the variables in the second section of code.
Happy coding!