Understanding Case Sensitivity in Variables kindly help me

Tell us what’s happening:

Your code so far

// Declarations
studlyCapVar = 10;
properCamelCase = “A String”;
titleCaseOver = 9000;

// Assignments
studlyCapVar = 10;“camelCase”;
PRoperCAmelCAse = "A String";
titleCaseOver = 9000;“camelCase”;

Your browser information:

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

Link to the challenge:
https://www.freecodecamp.org/challenges/understanding-case-sensitivity-in-variables

You don’t need these.

// Declarations
studlyCapVar = 10;
properCamelCase = “A String”;
titleCaseOver = 9000;

You also need to keep these as variable declarations, not assignments.

1 Like

Thanks buddy @PortableStick for your answer… But I found out the solution and finished it…