Sensitivity in Variables wrong

tried but dont know what is wrong

Your code so far


declarations
var studlyCapVar = 10 ;
var properCamelCase ;
var titleCaseOver;

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/81.0.4044.138 Safari/537.36.

Challenge: Understanding Case Sensitivity in Variables

Link to the challenge:

The words "declarations "and “assignments” are comments and have to be marked so. You can use double forward slash //

1 Like

Remove the = 10 from your variable declaration.

Should read as:

// Variable declarations
var studlyCapVar;
var properCamelCase;
var titleCaseOver;

// Variable assignments
studlyCapVar = 10;
properCamelCase = "A String";
titleCaseOver = 9000;
2 Likes

Thanks for help :relaxed:

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

Thank you for understanding.

2 Likes