Jav help with easy things

Tell us what’s happening:
What do I need to do?:frowning:

Your code so far

// Setup
var a;
var b = 2;

// Only change code below this line
var a = 7;
var b = 7;
a = b;

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36.

Link to the challenge:

1 Like

The last requirement is: a should be assigned to b with =.
What you did was “var b = 7” which means that you assigned b to 7.
Also, there is no need to use var since a and b were declared under the “Setup” comment.