Declaration. I need a help in coding

Tell us what’s happening:

Your code so far


// Declarations
var StUdLyCapVaR;
var properCamelCase;
var TitleCaseOver;

// Assignments
STUDLYCAPVAR = 10;
PRoperCAmelCAse = "A String";
DECLARATIONScASEoVER = 9000;


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



Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 8.0.0; SM-G930F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.116 Mobile Safari/537.36.

Challenge: Understanding Case Sensitivity in Variables

Link to the challenge:
https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/basic-javascript/understanding-case-sensitivity-in-variables

Hi @Kennymoru, note that lesson states:

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

You need to modiy the existing lines of code instead of adding new lines of code.

1 Like

All right. Thank you so much

1 Like