Basic JavaScript - Assigning the Value of One Variable to Another

Tell us what’s happening:

I am not able to understand How can I assign the value I am trying to assign a=b but it is not correct

Your code so far

// Setup
var a;
a = 7;
var b;

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

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0

Challenge Information:

Basic JavaScript - Assigning the Value of One Variable to Another

All that is wrong here is that you have assigned the wrong way around. You should be assigning…

the contents of a to variable b .

The a=b; is also valid but when the b has its own value but in here b is just a undefined. if you want the value of b to be 7. then try an approach where you do the same but the variable your assigning to has a value.

it’s not wrong syntax, but it doesn’t satisfy the requirements

Correct order of assigning value of variable ‘a’ to variable ‘b’ :
code removed by moderator

hi @alensharhan148

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge. How to Help Someone with Their Code Using the Socratic Method

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.