JavaScript arithmetic operators can perform the basic mathematical operations. Arithmetic Operators in JavaScript are: +, -, /, %, ++, —

+ Operator For Addition and Concatenation

It can do arithmetic operation to add numbers as well as string concatenation. Learn it from JavaScript variables and operators article.

// Using
var x = 5;
var y = 10;
var z;

Follow the example below to learn the JavaScript Arithmetic operations:

- Operator For Subtraction

z = y – x;

// Output:
// z = 5

/ Operator For Division of Numbers

It will output the quotient of mathematical division operation:

z = y / x;

// Output:
// z = 2

% Operator Also For division of Numbers

It returns remainder after division:

z = y % x;

// Output:
// z = 0

JavaScript Post increment/decrement and Pre increment/decrement

In JavaScript you use increment and decrement operators to increase the integer value by 1.

x++;
++x;
x--;
--x;

The difference between the post increment and pre increment is post increment increases the value of variable after being evaluated whereas pre increment increases the variable value before evaluating it.

No comments yet.

Leave a Comment

All fields are required. Your email address will not be published.

Recent JavaScript Tutorials

JavaScript if-else Ternary Operator

The JavaScript conditional ternary operator is considered as shorthand for if-else statement that is frequently used to return the result in single code statement. It takes three operands to return ...

JavaScript do…while Loop

do...while loop in JavaScript works like while loop in JavaScript the only difference is that do block executes at least once before while loop’s test condition. That’s why do block ...

JavaScript while Loop

while loop in JavaScript works same like for loop in JavaScript but in a little bit different manner. while loop runs until the condition is true and exits when the ...

JavaScript for Loop

for loop in JavaScript is most often used to execute a block of code with different value each time. So, to reduce the code length instead of adding number of ...

JavaScript switch-case Statement

To execute a single block of code satisfying a condition in case statement of JavaScript switch-case is used. break keyword is used in every case statement to exit the switch ...

Recent Comments