Computer Science, asked by joshishreejesh, 28 days ago

write a program to sum in( javascript) ?

Answers

Answered by napalarmy
1

Answer:

const num1 = parseInt(prompt('Enter the first number ')); const num2 = parseInt(prompt('Enter the second number ')); Then, the sum of the numbers is computed. const sum = num1 + num2; Finally, the sum is displayed.

Answered by getalive752
0

Answer:

const num1 = parseInt(prompt('Enter the first number ')); const num2 = parseInt(prompt('Enter the second number ')); Then, the sum of the numbers is computed. const sum = num1 + num2; Finally, the sum is displayed.

Similar questions