Understanding Case Sensitivity in Variable

Tell us what’s happening:

Your code so far


// Declarations
var studLyCapVar;
var properCamelCase;
var titleCaseOver;

// Assignments

properCamelCase = "A String";
titleCaseOver = 9000;

Your browser information:

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

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

Hi there @Thiru.

One of your variables is still lacking the appropriate camel case needed to pass the challenge. You can find the correct camel case in the text from the steps listed on the challenge if you get stuck…
steps

Hope this helps!

Hi Kyle ,

Thank you .