An operator is a symbol which helps the user to command the computer to do a certain mathematical or logical manipulations. Operators are used in the program to operate on data and variables.
JavaScript Operators
Arithmetic Operators
Arithmetic operators work on one or more numeric values yielding a single result.
+ Addition
- Subtraction
* Multiplication
/ Division
% Modulus
++ Increment by 1
– Decrement by 1 (more…)
