Basic JavaScript - Understanding Case Sensitivity in Variables

Tell us what’s happening:
Describe your issue in detail here.
what should i do
the question was:
Modify the existing declarations and assignments so their names use camelCase.
Do not create any new variables.

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 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0

Challenge: Basic JavaScript - Understanding Case Sensitivity in Variables

Link to the challenge:

hey! camel case is a naming convention for giving names to variables in javascript.
if your variable name consists of many words like:

mynameistaran

then it becomes a bit hard for your fellow developers to read and understand them so a better alternative is to start the first word with a lower case and then capitalize the first character of each word that comes after it.

for example:

myNameIsTaran

this challenge expects you to change the variable names to camelCase. Hope this helps! :smile:

Thank you
i am okay with your explanation

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