I understand the principle but I dont get it at all

Tell us what’s happening:
Describe your issue in detail here.
I did my code as I have learned so far. To me it seems right but the code isn’t running as I coded it. can someone tell me what I am doing wrong?

Your code so far

// Variable declarations
var studlyCapVar = 10;
var properCamelCase = "I am ";
var titleCaseOver = 0;

// Variable assignments
studlyCapVar = studlyCapVar + 0;
properCamelCase = properCamelCase + "A String";
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/103.0.5060.53 Safari/537.36 Edg/103.0.1264.37

Challenge: Understanding Case Sensitivity in Variables

Link to the challenge:

You should only declare the variables up top, then assign them below.

Reset the step, what you had to do was fix the variable names, not the variables that are assigned to them

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.