Calculates the logical NAND (NOT AND) operation on two or more values.
Two or more values
const x = Chalkboard.bool.NAND(true, true, true); // Returns falseconst y = Chalkboard.bool.NAND(true, true, false); // Returns true Copy
const x = Chalkboard.bool.NAND(true, true, true); // Returns falseconst y = Chalkboard.bool.NAND(true, true, false); // Returns true
Calculates the logical NAND (NOT AND) operation on two or more values.