如何用js判断null和undefined值

以下是不正确的方法:
var exp=null;
if(exp==null){
    alert('is null');
}
exp为undefined时,也会得到与null相同的结果,要同时判断null、undefined,可用以上方法。

2.要同时判断null、undefined、数字零、false时可用以下方法。
var exp=null;
if(!exp){
    alert('is null');
}

3.typeof null总返回object,所以不能这么判断
if(typeof exp=='null'){
    alert('is null');
}

4.判断null
if(!exp && typeof exp!='undefined' && exp!=0){
    typeof exp!='undefined' 排除了undefined
    exp!=0 排除了数字零和false
}

5.判断undefined
var exp=undefined;
if(typeof exp==undefined){
    alert('is undefined')
}

你可能感兴趣的:(如何用js判断null和undefined值)