Checks if value is null or undefined.
value
null
undefined
The value to check.
Returns true if value is null or undefined, else false.
true
false
isNullish(null)// => trueisNullish(undefined)// => trueisNullish('Hello, world!')// => false Copy
isNullish(null)// => trueisNullish(undefined)// => trueisNullish('Hello, world!')// => false
Checks if
value
isnull
orundefined
.