Skip to content

isNull

isNull(value) → boolean · Type

Returns true if the value is null.

  • value (required): the value to test
utlx
isNull(null)                             // true
isNull("")                               // false (empty string is not null)
isNull(0)                                // false (zero is not null)
isNull($input.optionalField)             // true if field is missing or null

Released under AGPL-3.0.