Skip to main content

And

Module Info:

moduleType: "internal",
moduleName: "and"

Description

The and function compares two boolean values, outputting wether or not bot values are simultaneously true

Inputs

NameTypeRequired
Aboolean
Bboolean

Outputs

NameType
bothTrueboolean

Examples

Inputs Outputs
A B bothTrue
false false false
true false false
false true false
true true true