Calculates the logical NOR (NOT OR) operation on two or more values.
const x = Chalkboard.bool.NOR(false, false, false); // Returns trueconst y = Chalkboard.bool.NOR(true, false, false); // Returns false Copy
const x = Chalkboard.bool.NOR(false, false, false); // Returns trueconst y = Chalkboard.bool.NOR(true, false, false); // Returns false
Two or more values
Calculates the logical NOR (NOT OR) operation on two or more values.
Example