A section of a program designed to swap the values of two variables [closed]
- by gary
Line
1.var numberOne;
2.var numberTwo;
3.numberOne = 9;
4.numberTwo = 1;
5.numberOne = numberTwo;
6.numberTwo = numberOne;
For each of the lines in the program above, give the values held by numberOne and numberTwo at that point in the program. You do not need to write any JavaScript.
Help me pls.
Thank you.