Computer Science, asked by shafaqatmuzamil69, 7 months ago

Write the JavaScript program for displaying the addition result of two numbers 28 and 16.

Answers

Answered by 2797neil
3

Answer:

var num1 = 28

var num2 = 16

var result;

result = num1 + num2;

console.log(result);

Similar questions