美文网首页
如何用js判断null和undefined值

如何用js判断null和undefined值

作者: _前端码农_ | 来源:发表于2020-04-26 14:58 被阅读0次
    以下是不正确的方法:
    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值

          本文链接:https://www.haomeiwen.com/subject/tfzdwhtx.html