It will determine whether the provided value is null or not.
value
1.0.0
isNull(null);// => true Copy
isNull(null);// => true
isNull(undefined);// => false Copy
isNull(undefined);// => false
isNull(void 0);// => false Copy
isNull(void 0);// => false
It will determine whether the provided
value
is null or not.