Tell us what’s happening:
Your code so far
// Setup
var a;
var b = 2;
// Only change code below this line
a=7;
b=7;
Your browser information:
User Agent is: Mozilla/5.0 (X11; CrOS x86_64 12871.102.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.141 Safari/537.36.
Challenge: Storing Values with the Assignment Operator
Link to the challenge:
Right now …
a=7; /* seven gets assigned to 'a' */
b=7; /* seven gets assigned to 'b' */
You should “Assign the contents of a to variable b .”
The value has to be copied from a itself, it can not be an equivalent value.
Hi rielka,
I have blurred out you code to avoid spoiling a full working solution for other campers who may not yet want to see a complete solution. In the future, if you post a full passing solution to a challenge and have questions about it, please surround it with [spoiler] and [/spoiler] tags on the line above and below your solution code.