Help needed in solving this challenge

Tell us what’s happening:
I have written the code in camel case but it keeps gigving me an error that tittle CaseOVer isnt defined.What should i do?

Your code so far


// Variable declarations
var studlyCapVar;
var properCamelCase;
var tittleCaseOver;

// Variable assignments
studlyCapVar = 10;
properCamelCase = "A String";
tittleCaseOver = 9000;

Your browser information:

Challenge: Understanding Case Sensitivity in Variables

Link to the challenge:

There’s 2 typos in “titleCaseOver”. Change in both place. Should be “title” not “tittle”.

1 Like