Storing Values with the Assignment Operator aria

Tell us what’s happening:

what’s the meaning of
‘a’ should be assigned to ‘b’ with ‘=’ ???

Your code so far


// Setup
var a;
var b = 2;

// Only change code below this line
var a = 7; // The variable 'a' is equal to '7'
var b = 7; // The variable 'b' is equal to '7'

Your browser information:

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

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/storing-values-with-the-assignment-operator

In the same way that you assign a number to a variable (b = 7) you can instead assign a variable to an other variable, in this way the variable that is being assigned will have the same value of the other variable