如果指定的值为 null ,则返回 true ;否则返回 false。
null
true
false
使用严格等号运算符来检查 val 值是否等于 null 。
val
const isNull = val => val === null;
isNull(null); // true