最近工作中遇到了频繁的数据处理,期间遇到了不少的基础数据类型的判断,今天就来总结一下对js基本数据类型中的 undefined, null ,NaN的判断。
对undefined,null
的判断: 一般来说直接用 ===
来判断就可以来判别,但是有时后台给的undefined/null会被转化成字符串的,这时 ===
就会失效,以undefined为例;NaN
比较特殊,不能用 ===
来判断,但是也可以用转为字符串的方式来进行比较。
let test = undefined;
test === undefined;//true
----------
let test2 = 'undefined';
test2 === undefined;//false
(test + '') === 'undefined';
//这里注意当parseInt传递的参数里面有数字且数字在前面时,
//该方法会返回前面的数字
//例如: parseInt('123aaa')// 123
let test3 = parseInt('aaa');//NaN
//除了 + " " 以外其实也可以用模板字符串来进行字符的转换。
`${test3}` === 'NaN' // true
tips:undefined,null,NaN
方法是没有toString 方法的;