Tell us what’s happening:
Your code so far
var a;
a = 7; // The variable 'a' is equal to 7
var b;
b = a;
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0.
Link to the challenge:
The setup should stay the same
// Setup
var a;
var b = 2;
Below the comment…
// Only change code below this line
…assign the value 7 to the a variable, then assign the value of a to b. Do not redeclare any variables.
Thank you for your assistance!!
You are welcome, happy coding.