Arithmetic Operations
Operator |
Description |
+ |
Addition |
- |
Subtraction |
* |
Multiplication |
/ |
Division |
% |
Modulus Division |
( ) |
Parenthesis (grouping) |
Arithmetic Operations follow the standard mathematical order of operations:
Parenthesis
Exponents (not supported)
Multiplication
Division (including modulus division)
Addition
Subtraction
1 + 2
2 * 5 + 1
2 * (5 + 1)
Operations: Arithmetic, Bitwise, Logical, and Precedence
Functions: Arithmetic and Document