Storing Values, Assignment Operator

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko/20100101 Firefox/62.0.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/storing-values-with-the-assignment-operator

The thing is you need to assign
the value 7 to a variable a
and
the contents of a to the variable b
like this

a = 7;
b = a;

this will solve the problem.

2 Likes