I can't find the answer for basic thing

ı can’t understand something in the second lesson of JavaScript. It says " a should be assigned to b with =" what does it mean? I don’t know I tried every combination which I see on the explanation part. I made var a = var b, var a = b and so on but couldn’t find the answer.

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

can someone give me the answer for this page.

Assign the contents of a to variable b:

b = a;
1 Like

“var” is used only to define a variable.
var a; - means "let in this code be variable called “a”.
then you just use a name of your variable.