Variable figure out on how to define a variable and a value

they say i should define the variable and have the value of 10 and titlecaseover is not working

Your code so far


// Variable declarations
var studlyCapVaR;
var properCamelCase;
var titleCaseOver;

// Variable assignments
studylyCapVar = 10;
properCamelCAse = "A String";
titleLeCaseOver = 9000;
var studlyCapVar ;
var studlyCapVar = 10 ;
var properCamelCase ;
var proprCamelCase = " A String" ;
var titleCaseOver ;
var titleCaseOver = 9000 ;

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36.

Challenge: Understanding Case Sensitivity in Variables

Link to the challenge:

All you need to do is correct the variable names.

Writing them out by hand may help you better understand camelCase but you can also copy-paste the names from the test output if you want to make sure you get it right.

List of the correct names:

studlyCapVar
properCamelCase
titleCaseOver

Edit: Iā€™d suggest you reset the challenge and try again.

1 Like