AND operator

Synopsis
This operator performs a logical AND operation.
Variations
Bool AND Bool2
Performs a logical AND operation.
Parameters
Bool

Specifies the first value.

Supported types: Boolean.
Bool2

Specifies the second value.

Supported types: Boolean.
Returns
Returned types: Boolean.
Examples
1.

The following example returns True.

True AND True
2.

The following example returns False.

True AND False