Calculates the logical NOR (NOT OR) operation on two or more values.

const x = Chalkboard.bool.NOR(false, false, false); // Returns true
const y = Chalkboard.bool.NOR(true, false, false); // Returns false
  • Parameters

    • ...vals: (boolean | 0 | 1)[]

      Two or more values

    Returns boolean | 0 | 1