Clarification in Understanding Case Sensitivity in Variables

I realize this is a free site, but I wish the exercises explained more clearly what they expect you to do. I found in this one, I needed to delete all of the given information, and type in my own before the system allowed a pass on my answer.

An instruction like:

"Correct the case of the shown variable names according to the camelCase rules.

I think it would alleviate folks’ confusion. I had a similar problem with the previous exercise.

Thanks for listening!

Tell us what’s happening:

Your code so far

// Declarations

// Assignments


// My Code

var studlyCapVar;
var properCamelCase;
var titleCaseOver;

studlyCapVar = 10;
properCamelCase = "A String";
titleCaseOver = 9000;


Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko/20100101 Firefox/60.0.

Link to the challenge:
https://www.freecodecamp.org/challenges/understanding-case-sensitivity-in-variables

How is this significantly different from

Modify the existing declarations and assignments so their names use camelCase.

?

1 Like