somebodyy helppppp plsss

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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36

Challenge: Understanding Case Sensitivity in Variables

Link to the challenge:

Hello there.

Do you have a question?

If so, please edit your post to include it in the Tell us what’s happening section.

Learning to describe problems is an important part of learning how to code.

Also, the more information you give us, the more likely we are to be able to help.


All three variables should only have two capital letters, and the capitalization must match in both places.

Hi @skydancer !

Welcome to the forum!

The main issue is that you are not consistent with your camel case.

For example, you are correct here

but not here

Same issue goes with these being correct

but then these are incorrect.

Consistency and attention to detail are important :grinning:

2 Likes

ohhhh i see i apologize im just a 15 yrs old trying to change the future

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;
//Declarations
var studlyCapVar;
var properCamelCase;
var titleCaseOver;

//Assignments
studlyCapVar = 10
ProperCamelCase = "I Am 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/90.0.4430.212 Safari/537.36

Challenge: Understanding Case Sensitivity in Variables

Link to the challenge:

You should only have one set of declarations and assignments. All variable names should follow camelCase which the lesson explains.

The first letter of a word in camelCase starts as lowercase and each start of a new word uses uppercase to signify its a different word. An example would be:

var exampleNameToExemplifyCamaleCase  = "this string is not important"
1 Like

I moved your post over here because we don’t allow duplicate topics on the forum.


I would reset the lesson and reread my earlier post very carefully.

Ask questions about what you don’t understand and we can clarify our responses.

You were closer to the answer in your first post than with your current code.

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