Basic JavaScript - Understanding Case Sensitivity in Variables

Tell us what’s happening:

I am confusing with the instructions and iam can’t able to understand this case sensitive

Your code so far

// Variable declarations
var studlyCapVar = 10 ;
var properCamelCase;
var titleCaseOver;

// Variable assignments
studlyCapVar = 10;
propercamelCase = "A String";
titleCaseOver = 9000;

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Mobile Safari/537.36

Challenge Information:

Basic JavaScript - Understanding Case Sensitivity in Variables

you are almost there, this one needs one minor adjustment

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