Variables & Case Sensitivity

Hey Err’body :pleading_face:

Man, I am so glad to be back :weary:

I just started my JavaScript journey :blush:

May you kindly please assist :pray:t6:

Fixed all the variables according to the camelCase rules but don’t know what the issue might be. I also did go back to past questions regarding the same task and didn’t see any relating to my issue.

My solution (added in the //Assignments part):

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

//Assignments
studlyCapVaR = 10;
properCamelCase = "A String";
titleCaseOver = 9000;

// Variable assignments
studlyCapVaR = 10;
properCamelCase = "A String";
titleCaseOver = 9000;

Link to the challenge:

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

Firstly, studlyCapVaR is not the variable name required by the challenge, as it should be strict camelCase.
Secondly, why are you assigning values to all of the variables twice?

1 Like

Wow, totally missed that :sleepy:

It’s why I ended up re-assigning the values because I thought it’s what was required.

Thank you so much :pray:t6:

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