Basic JavaScript - Understanding Case Sensitivity in Variables

Case sensitive.
The code does not want to run maybe i am making mistake or don’t understand it yet.

Your code so far

// Variable declarations
var StUdLyCapVaR;
var properCamelCase;
var TitleCaseOver;

// 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/104.0.0.0 Safari/537.36

Challenge: Basic JavaScript - Understanding Case Sensitivity in Variables

Link to the challenge:

I don’t see where you changed all the the variables to camelCase

please help sir give me a hint I have little knowledge of JAVASCRPIPT.

Read the exercise carefully: you’ll be able to do it,

1 Like

camelCase is where variables with multiple words are written in this fasion- “thisIsCamelCase” as opposed to “ThisIsCamelCase” or “thisiscamelCase” and so on. Basically changed all the variables to be like the first case.

1 Like

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