AND operator
Synopsis
This operator
performs a logical AND operation.
Variations
Bool AND Bool2
Performs a logical AND
operation.
Details |
Examples |
Details and examples
Parameters
Bool
Specifies the first value.
Supported types: Boolean.
Bool2
Specifies the second value.
Supported types: Boolean.
Returns
Examples
1. |
The following example returns True.
True AND
True
|
2. |
The following example returns False.
True AND
False
|