Checks if the input is null.
检查输入是否为 null。
The value to check. 要检查的值
True if the value is null, false otherwise. 如果值为 null 则返回 true,否则返回 false
isNull(null) // => trueisNull(undefined) // => false Copy
isNull(null) // => trueisNull(undefined) // => false
Checks if the input is null.
检查输入是否为 null。