Operators
Comparison operators
The following comparison operators can be used in FlowScript. The result of these expressions is always a truth (Boolean) value:
Expression | Result |
| TRUE if a equals b, FALSE if a does not equal B or the types of a and b cannot be compared |
| TRUE if a does not equal b or the types of a and b cannot be compared, FALSE if a equals b |
| TRUE if a is greater than b, FALSE otherwise |
| TRUE if a is less than b, FALSE otherwise |
| TRUE if a is greater than or equal to b, FALSE otherwise |
| TRUE if a is less than or equals to b, FALSE otherwise |
Logical operators
The following logical operators can be used in Flow Script. The result of these expressions is always a truth (Boolean) value.
Expression | Result |
| TRUE if both a and b are true, FALSE otherwise |
| TRUE if either a or b are true, FALSE otherwise |
| TRUE if a is false, FALSE otherwise |
Last updated