Declare, set of vars not working

Tell us what’s happening:
As best as I am able I have followed the instructions on this challenge and it is failing.

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; Ubuntu; Linux x86_64; rv:77.0) Gecko/20100101 Firefox/77.0.

Challenge: Understanding Case Sensitivity in Variables

Link to the challenge:

You are close - CapVar is the intended capitalization

Yikes! Fixed. Thanks!

1 Like