Variable declarations

hi, in which part is wrong here? so far in variable assignments it is all in CamelCase

Your code so far


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

Your browser information:

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

Challenge: Understanding Case Sensitivity in Variables

Link to the challenge:

You were supposed to just change the assignments. You changed the assignments at the bottom but also added assignments in the top section.

When I remove the extra assignments, you code passes for me.

1 Like

cool! thanks Kevin didn’t realize that

1 Like

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