Skip to content

nor

nor(a, b) → boolean · Type

Logical NOR (NOT OR). Returns true only when both arguments are false.

  • a (required): first boolean

  • b (required): second boolean

utlx
{
  bothFalse: nor(false, false),              // true
  oneTrue: nor(true, false),                 // false
  otherTrue: nor(false, true)                // false
}

Released under AGPL-3.0.