Number,null,undefined转换规则

六种数据类型转Number规则:
1、Number转Number,本来多少就是多少;
2、String转Number:数字字符串转成对应数字,空字符串转为0,其他均为NaN;
3、Boolean转Number:true为1,false为0;
4、null为0,undefined为NaN;
5、Object(包括对象、函数、数组、正则等)转Number调用其valueof()方法,如果为NaN,调用toString()方法,如果还是NaN,则结果为NaN。

null与undefined在与其他数相等运算时不进行类型转换,
null与undefine单独与别的值比较都为false,但undefined为null的衍生对象,所以两个比较为true

console.log(null==false) //false
console.log(null==undefined)//true

你可能感兴趣的:(web前端)