Basic JavaScript - Understanding Case Sensitivity in Variables

This is what I am supposed to right, according to many people on the forum and youtube, but the test wont let me pass, even though I did as I was told. Help.
Describe your issue in detail here.

// Variable declarations
var studlyCapVar;
var properCamelCase;
var TitleCaseOver;

// Variable assignments
studlyCapVar=10;
properCamelCase="A String";
TitlecCaseOver=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/113.0.0.0 Safari/537.36

Challenge: Basic JavaScript - Understanding Case Sensitivity in Variables

Link to the challenge:

You have an extra letter here, and its not camel case like the others

oh, I feel really stupid. Thanks.

It still doesent work after I fixed the typo

This is not camel case as well

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