Returns true if the parameter is undefined value. For all other values, including null, this returns false.
true
undefined
null
false
IS_UNDEFINED(value: Json) => Boolean
Parameter
Description
Value
Value to check
Formula
Return value
IS_UNDEFINED(undefined)
IS_UNDEFINED(null)
IS_UNDEFINED(false)
IS_UNDEFINED(0)
IS_UNDEFINED("")