Logical AND condition
The AND
condition is a logical function that returns true
if all of the conditions are true
, and false
otherwise.
Example
# Example 1:
Inputs: true, true, true
Output: true
# Example 2:
Inputs: true, false, true
Output: false
Input
Boolean—REQUIRED
One or many boolean values.
Output
Boolean
The result of the condition (true or false).