xor
Logical XOR (exclusive OR) — returns true when exactly one operand is true.
a(required): first booleanb(required): second boolean
utlx
xor(true, false) // true
xor(true, true) // false
xor(false, false) // false