Let's test your knowledge. Fill in the missing part by typing it in.
What will be the final value of variable a below?
JAVASCRIPT
1var a = "Hello"
2var b = a
3a = "World"Write the missing line below.


What will be the final value of variable a below?
1var a = "Hello"
2var b = a
3a = "World"Write the missing line below.
