Help me Understanding Case Sensitivity in Variables

Tell us what’s happening:

Your code so far


// Declarations
var StUdLyCapVaR;
var properCamelCase;
var TitleCaseOver;

// Assignments
studlyCapvar= 10;
PRoperCAmelCAse = "A String";
tITLEcASEoVER = 9000;

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0.1 Safari/605.1.15.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/understanding-case-sensitivity-in-variables

What is it that you don’t understand?

Do we just type in camelcase?

For this particular challenge yes convert all variable declarations and assignments to camelCase.

The main concept to understand for this challenge however, is that javascript is a case sensitive language, so in the future when defining variables make sure that you keep capitalization is consistent