camelCase Assistance

Tell us what’s happening:
Describe your issue in detail here.
I wrote and checked that everything matched in camelCase as requested in challenge but dont see why its not working.

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 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36

Challenge: Understanding Case Sensitivity in Variables

Link to the challenge:

You intermingled the variable declarations and assignments. You should not add these duplicate assignments.

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