Assign the value 7 to variable a. Assign the contents of a to variable b

Tell us what’s happening:

Assign the value 7 to variable a .

Assign the contents of a to variable b .

Your code so far


// Setup
var a;
a = 7;
var b = a;
 
// 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/81.0.4044.129 Safari/537.36.

Challenge: Storing Values with the Assignment Operator

Link to the challenge:

Please note the line that says Only change code below this line, which you have not respected