Arithmetic Operators
The following binary arithmetic operators are supported in expressions.
The operands are numeric.
Addition Operator (+)
OPERAND-A + OPERAND-B
The addition operator (+
) adds up the values of the two operands, and returns the sum.
Division Operator (/)
OPERAND-A / OPERAND-B
The division operator (/
) divides the left operand (OPERAND-A
) by the right operand (OPERAND-B
), and returns the product.
Multiplication Operator (*)
OPERAND-A * OPERAND-B
The multiplication operator (*
) multiplies the values of the operands, and returns the result.
Subtraction Operator (-)
OPERAND-A - OPERAND-B
The subtraction operator (-
) subtracts the right operand (OPERAND-B
) from the left operand (OPERAND-A
), and returns the difference.