A function that returns the ! of its argument. It will return true when passed false-y value, and false when passed a truth-y one.
!
true
false
not(true); //=> false not(false); //=> true not(0); //=> true not(1); //=> false
any value
the logical inverse of passed argument.
Generated using TypeDoc
A function that returns the
!of its argument. It will returntruewhen passed false-y value, andfalsewhen passed a truth-y one.