Addition of two numbers in javascript

Addition of two numbers in javascript

Here you will learn example program of addition of two numbers in javascript language.

Addition is the mathematical operation of add joining the values of two given variables.

for example:

a = 5

b = 10

sum = a + b    // 10

 

Program: Addition of two numbers in javascript

Output

Sum : 25

 

 

Check out our other JavaScript examples

 

 

 

 

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top