Basic JavaScript - Understanding Case Sensitivity in Variables

Tell us what’s happening:
so i wrote down everything that was explained in the video (hint) and used camelcase method but it still showed error, i did everything just like that guy did in the video and he didnt have any problems soo what wrong with mine?

Your code so far

// Variable declarations
var studylyCapVar;
var properCamelCase;
var titleCaseOver;

// Variable assignments
studylyCapVar = 10;
properCamelCase = "A String";
titleCaseOver = 9000;

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14989.85.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36

Challenge: Basic JavaScript - Understanding Case Sensitivity in Variables

Link to the challenge:

Typo. This sort of issue is common when copying a video.

you have a spelling error.
(the error message is pointing you to it, it is in the word studylyCapVar)

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