Storing Values with the Assignment Operator felzera

Tell us what’s happening:
How I assign the variable “a” with the variable “b” using ‘=’?

Your code so far


// Setup
var a;
var b = 2;

var a = 7
b = 7
var a = b

// Only change code below this line

Your browser information:

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

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

You changed the code above this line.

Then

Assign the value 7 to variable a.

Assign the contents of a to variable b.

Take a look again at the above, is this what you are doing?