No luck. Please help

Watch videos and read examples. Still can’t pass.

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 (iPhone; CPU iPhone OS 15_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/211.1.447770393 Mobile/15E148 Safari/604.1

Challenge: Understanding Case Sensitivity in Variables

Link to the challenge:

You’ve got one mistake. I’ll admit, the error messages aren’t the best here. I’d ignore them. Take a very close look at the first var statement. There is one letter that is not correct. Once you fix that it will pass.

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