Please i need help Modifying the existing declarations and assignments so their names use camelCase. will i adjust and change only the variable declarations or both the variable declarations and variable assignments?

Tell us what’s happening:

Your code so far


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

Challenge: Understanding Case Sensitivity in Variables

Link to the challenge:

1 Like

Hi @uzodimma. Yes. You need to modify the assignments also as it is said in the challenge:

Modify the existing declarations and assignments so their names use camelCase.
Do not create any new variables.

A tip: When you create topics, please describe your problem under the " Tell us what’s happening:" and don’t fill the descriptions in the title of the topic. Titles should be short.

Hope you understand.

Thanks. it worked. i appreciate. i have scaled through the challenge.

1 Like

Hello there,

Please change your thread title to describe your problem more clearly. Descriptive titles, such as “Why does my function return undefined?”, are more likely to elicit helpful responses than generic titles, such as “Help please” or long sentences.

Make use of the Tell us what’s happening section of the pre-populated posts to ask any questions/provide more information.

Thank you

1 Like