Boolean Operators
Syntax
BooleanExpression :
ExpressionorExpression
| ExpressionandExpression
The operators or and and may be applied to operands of boolean type. The or operator denotes logical 'or', and the and operator denotes logical 'and'.
Example:
const x: bool = false or true // true