Boolean logical operators
- Last UpdatedApr 24, 2024
- 1 minute read
The logical Boolean operators perform logical operations with bool operands.
Boolean operations are evaluated from left to right and parenthesis can be used to prioritize.
|
Operator |
Description |
|---|---|
|
&& |
Performs a logical AND between two operators. |
|
|| |
Performs a logical OR between two operators. |
|
! |
Performs a logical NOT on an operator. |