Lowdefy
v3.17.2/Operators/_not/

_not

(value: any): boolean

The _not operator returns the logical negation of the input. If the value is not a boolean, it will be converted to a boolean using javascript truthy and falsy rules.

Arguments

any

Examples

Not true is false:
_not: true

Returns: false

Return true for a falsy value:
_not: null

Returns: true

Return false for a truthy value:
_not: 100

Returns: false