| Item | Description |
| % | Modulus operator (binary): calculates the remainder of a division. |
| * | Multiplication operator (binary): multiplys numeric values. |
| ** | Exponentiation (binary): raises a number to the power of an exponent. |
| + | Plus operator: add values, concatenate values and unary positive. |
| ++ | Increment operator (unary): prefix / postfix increment. |
| - | Minus operator: add values, concatenate values and unary negative. |
| -- | Decrement operator (unary): Prefix / postfix decrement |
| / | Division operator (binary): divides numeric values. |
| = (compound assignment) | Compound assignment (binary): inline operation with assignment. |