i am a noob but i took the beginner course on codeacademy and i cant understand why this wont work its like the second or third question i feel really stupid and i cant seem to understand what is apparently supposed to be very simple please help thank you.
Assign the value 7 to variable a.
Assign the contents of a to variable b.
Do not change code above the line
a should have a value of 7
b should have a value of 7
a should be assigned to b with =
b=7;
1
2
// Setup
3
var a;
4
var b = 2;
5
6
// Only change code below this line
7
b=7;
8
a=b;
9
10
11
12
//the only one that shows up as incorrect is the “a should be assigned to b with =” requirement.