Where am I making mistake in below code

Tell us what’s happening:
Describe your issue in detail here.

Your code so far


// Variable declarations
var studyCapvar;
var properCamelCase;
var titleCaseOver;

// Variable assignments
studyCapvar = 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/91.0.4472.124 Safari/537.36

Challenge: Understanding Case Sensitivity in Variables

Link to the challenge:

You’re almost there.

You basically have and issue with the first variable. First, you misspelled “studly” and also your camel case on that first variable is off.

So, basically on the declaration of that first variable I had to add a char and change the casing on a different char. And then I did the same for that variable’s assignment.

When I fix those, your code passes for me.

Thank you @kevinSmith I got it

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