This is camel case isn't it? What have I missed?

Hi, I understand the concept of camel case, but can’t get past this question. My code is the same as the code on the help video, but still I get an error message saying studlyCapVar is undefined, I don’t get it. Any help would be much appreciated

// Variable declarations
var studlyCapVaR;
var properCamelCase;
var titleCaseOver;

// Variable assignments
studlyCapVar = 10;
properCamelCase = “A String”;
titleCaseOver = 9000;


// Variable declarations
var studlyCapVaR;
var properCamelCase;
var titleCaseOver;

// Variable 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/92.0.4515.159 Safari/537.36

Challenge: Understanding Case Sensitivity in Variables

Link to the challenge:

studlyCapVaR has an uppercase R at the end in the declaration.

Hi @nev123 !

Welcome to the forum!

Double check the first variable here

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