studlyCapVar should use camelCase in both declaration and assignment sections

Getting a error “studlyCapVar” should use camelCase in both declaration and assignment sections.
can u tell what to do.

Your code so far


// Declarations
var studlyCapVaR = 10;
var properCamelCase ="A String";
var titleCaseOver = 9000;

// Assignments
var 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/80.0.3987.87 Safari/537.36.

Challenge: Understanding Case Sensitivity in Variables

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

Your first declaration is not quite camelCase (you’ve got one too many letters capitalized).
For the assignment, you don’t need ‘var’ since you have already declared it above.

1 Like

Your first declaration was var studlyCapVaR = 10; em should be var studlyCapVar = 10; .