You are here:
Supported Library Operators
Learn more about the supported library operators in the Data 360 syntax editor.
Only specific operators can be referenced in the Data 360 syntax editor.
| Operator Name | What It Does |
|---|---|
| a != b | Not Equals Check. Checks to see if the values on both sides of the operator are not equal. |
| a % b | Modulus. Divides the number on the left by the number on the right and returns the remainder. |
| a && b | Logical AND. Checks to see that the values on both sides of the operator are true. |
| a * b | Multiplication. Multiples the number on the left by the number on the right. |
| a + b | Addition. Adds the value on the left to the value on the right. Use the NUMBER() function to ensure the left and right are treated as numbers. |
| a - b | Subtraction. Subtracts the value on the right from the value on the left. |
| a / b | Division. Divides the number on the left by the number on the right. |
| a < b | Less Than Check. Checks to see if the value on the left side of the operator is less than the value on the right. |
| a <= b | Less Than or Equal. Checks to see if the value on the left-hand side is less than or equal to the value on the right. |
| a == b | Equality Check. Checks to see if the values on both sides of the operator are equal. |
| a > b | Greater Than Check. Checks to see if the value on the left side of the operator is greater than value on the right. |
| a >= b | Greater Than or Equal. Checks to see if the value on the left-hand side is greater than or equal to the value on the right. |
| a || b | Logical OR. Checks to see if either the value on the left or the right is true. |

