**Challenge:** Understanding Case Sensitivity in Variables

Its asking to change items to CamelCase.

// 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;

I am getting all kinds of errors

studlyCapVar should be defined and have a value of 10.

properCamelCase should be defined and have a value of “A String”.

titleCaseOver should be defined and have a value of 9000.

studlyCapVar should use camelCase in both declaration and assignment sections.

properCamelCase should use camelCase in both declaration and assignment sections.

titleCaseOver should use camelCase in both declaration and assignment sections.

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36.

Challenge: Understanding Case Sensitivity in Variables

Link to the challenge:

Hi and welcome to the forum.

Your variables do not quite match the requested capitalization.

Requested:

Actual:

Requested:

Actual

Requested:

Actual:

1 Like

Thank you JeremyLT. I had a total brain fart. :joy:

I’m happy to help. Typos happen to all of us

A post was split to a new topic: Variables camelCase

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