Case Sensitivity in Variables again

// Declarations

var studyCapVar;

var properCamelCase;

var titleCaseOver;

// Assignments

studyCapVar = 10;

properCamelCase = "A String";

titleCaseOver = 9000;

gets

// running tests

studlyCapVar is defined and has a value of 10

null is not an object (evaluating 'code.match(/studlyCapVar/g).length')

// tests completed

What is your question?

Hi, What is wrong with the code I’m getting error

Hello @idkwtfimdoin, welcome to the forum. :slight_smile:

The lesson is expecting a variable called

studlyCapVar

While you have one called

studyCapVar

As you can see the two name don’t match, yours si missing an l :smile:
Hope it helps

where do you see studlyCapVar? in my code?
oh I needed it in my code…duh lol thanks