Javascript - Operator Arithmetic Operator
HOME
Javascript
Operator
Arithmetic Operator
Introduction
Javascript has the following arithmetic Operators.
Related Topics
Add Operator
Subtract Operator
Multiply Operator
Divide Operator
Modulus Operator
Increment/Decrement Operators
Unary Plus Operator
Unary Minus Operator
Exercise
Write program to display the sum of 10 + 5, using two variables x and y.
Write program to Display the difference of 10 - 5, using two variables x and y
Write program to Display the product of 10 * 5, using two variables x and y.
Write program to Display the result of 10 / 5, using two variables x and y.
Write program to Find the remainder when 15 is divided by 9, using two variables x and y.
Write program to calculate a remainder of 10 / 3.
Previous
Next