May be I'm too stupid to understand this

Tell us what’s happening:
Describe your issue in detail here.
I do not understand what is going on, I followed the instructions

Your code so far


// Variable declarations
var StUdLyCapVaR;
var propercamelCase;
var TitleCaseOver;

var studlyCapVar = 10;
var propercamelCase = "A String";
var titleCaseOver = 9000;

// 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/605.1.15 (KHTML, like Gecko) Version/15.0 Safari/605.1.15

Challenge: Understanding Case Sensitivity in Variables

Link to the challenge:

The instructions say:

“Do not create any new variables.”

So the starting code has six lines (three declarations and three assignments). That’s how many lines you should have after your changes.

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