Boolean Operators
Here is a list of all Boolean operators available to use in simple expressions.
| Boolean Operator | Description | Simple Expression | Result | 
|---|---|---|---|
| == | Equals | true == true | true | 
| != | Not Equals | true != false | true | 
| and | Conditional - And | true and false | false | 
| or | Conditional - Or | true or false | true | 
| not | Logical complement operator; inverts the value of a Boolean expression | not true | false |