Skip to main content

Is Nill

Module Info:

moduleType: "internal",
moduleName: "isNill"

Description

The isNill function receives a value and verifies if it is defined or nill (null or undefined).

Inputs

NameTypeRequired
valueany

Outputs

NameType
isNillboolean

Examples

Inputs Outputs
value isNill
"a string" false
"" false
undefined true
null true