Operators are special symbols used to operate on values. They can be grouped into five types: arithmetic, assignment, comparison, logical, and bitwise operators.
Arithmetic operators
There are four basic arithmetic operators, as well as the modulus operator (%), which is used to obtain the division remainder:
Note that the division sign gives an incorrect result. That’s because it operates on two ...