DyA Logical Operators

Logical Operator Description Example
| The pipe symbol is used to create a compound DyA where only one DyA must equal TRUE.

TRUE | TRUE Returns TRUE

FALSE | FALSE Returns False

& The ampersand is used to create a compound DyA where all DyA’s must equal TRUE.

TRUE & FALSE Returns FALSE

TRUE & TRUE Returns TRUE