Understanding Case Sensitivity in Variable helps

Help, please

Your code so far


// Declarations
var stUdLyCapVar;
var properCamelCase;
var titleCaseOver;

// Assignments
stUdLyCapVar = 10;
properCamelCase = "A String";
titleCaseOver= 9000;

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/understanding-case-sensitivity-in-variables

What is your question?

It keeps telling me " studlyCapVar is defined and has a value of 10 and " studlyCapVar should use camelCase in both declaration and assignment sections.

It’s probably telling you that studlyCapVar should be defined. If your code above is complete, you haven’t defined it. You have stUdLyCapVar, which does not use camel case.

Oh, I see. Thank you!

I’m still having an issue with this one

What solutions have you tried? What do the failing tests say?

I finally got it! :slight_smile:

Good job! Happy coding.