InterviewSolution
Saved Bookmarks
| 1. |
How to add any two numbers in JavaScript? |
|
Answer» In programming, just like in algebra, we USE VARIABLES (like price1) to hold values.In programming, just like in algebra, we use variables in expressions (total = num1 + NUM2).From the example above, you can CALCULATE the total to be 11. |
|