nand
Logical NAND (NOT AND). Returns true unless both arguments are true.
a(required): first booleanb(required): second boolean
utlx
{
bothTrue: nand(true, true), // false
mixed: nand(true, false), // true
bothFalse: nand(false, false) // true
}