Basic JavaScript - Understanding Case Sensitivity in Variables

Tell us what’s happening:
Describe your issue in detail here.

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 (Macintosh; Intel Mac OS X 10_15_7) 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:

Please tell us what is happening

From what I can see, I correctly camelCased the decs. and assignments.

It doesn’t pass for some reason because it views studlyCapCar as not defined as 10 and just wrong. Not sure how that can possibly be. Bug? or am I missing something here?

Thanks.

You still have a capital R but you should be using a lower case r

Thanks.

I am so used to using a form of Open Pascal (EasyLanguage - TradeStation) that I happen to overlook this obvious mistake on my part.

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