Understanding Case Sensitivity in Variables - "any"?

Tell us what’s happening:

What is “any”? It appears as i hover over the variables.

Your code so far


// Declarations
var StUdLyCapVaR;
var properCamelCase;
var TitleCaseOver;

// Assignments
STUDLYCAPVAR = 10;
PRoperCAmelCAse = "A String";
tITLEcASEoVER = 9000;

Your browser information:

User Agent is: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:63.0) Gecko/20100101 Firefox/63.0.

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

It’s for quickly determining the type of values the variable can accept when using strict mode. I’ve modified your code to show to difference. “Any” just means that you could set the value of the variable to a number, a string, a boolean, etc and it wouldn’t care.

// Declarations
'use strict';
var studlyCapVar = 1;
var properCamelCase = false;
var titleCaseOver = '';

// Assignments
studlyCapVar = 10;
properCamelCase = true;
titleCaseOver = 9000;