Need help in Understanding Case Sensitivity in Variables

How to define the studlycapvar


// Variable declarations
var studlyCapVaR;
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/83.0.4103.61 Safari/537.36 Edg/83.0.478.37.

Challenge: Understanding Case Sensitivity in Variables

Link to the challenge:

You need to declare it as you have it typed on the line where you set it to 10. Your R has a different capitalization.

Iā€™m new to javascript. How to?

You typed it correctly the second time. Just use that capitalization in both places.

Thanks it completed everything

1 Like