InterviewSolution
Saved Bookmarks
| 1. |
4.write a program to print the sum of two given numbers |
|
Answer» var x = 4 /**/ You can change the valuesas they are variables */var y = 7console.log(x + y)LANGUAGE JAVASCRIPT |
|