Help me please dont understand

Pleaase help I dont understand this at all

Your code so far


// Variable declarations
var studlyCapvar = 10;
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/95.0.4638.54 Safari/537.36

Challenge: Understanding Case Sensitivity in Variables

Link to the challenge:

Could you please be more specific? It is very difficult to answer questions like this. You don’t understand “this” at all? Where do we start? Do you understand that you’re typing on a computer? Do you understand what the alphabet is? Do you understand what a variable is? I mean, what is “this”?

Looking at what you have so far, everything must be camelCase. So, capitalize the first word (except the first word) and smoosh them together. And the two uses of each variable (in the declarations and the assignments) must match.

If you need more assistance, please be very specific.

1 Like

I am so stuck on this and nothing is working can someone so me the answer, so i can work it out. thank you.

Modify the existing declarations and assignments so their names use camelCase.

Do not create any new variables.

// Variable declarations

var StUdLyCapVaR;

var properCamelCase;

var TitleCaseOver;

// Variable assignments

STUDLYCAPVAR = 10;

PRoperCAmelCAse = “A String”;

tITLEcASEoVER = 9000;

As I tried to explain before, please be specific about what is confusing you. You are given three variables. Here is one of them:

var StUdLyCapVaR;

That is not camelCase. It should be. Change it to camelCase.

Then go down to this:

STUDLYCAPVAR = 10;

That needs to match, so that also should be camelCase.

Check all three variable names.

yip got it thanks so much

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