关于null,undefined,空字符串的判断

Posted 学如逆水行舟

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于null,undefined,空字符串的判断相关的知识,希望对你有一定的参考价值。

<script>
    let a=xxx;
    if (!a && typeof a=="object") {
        alert(a是一个null);
    }else if(!a && typeof a=="undefined"){
        alert(a是undefined)
    }else if(!a && typeof a==string){
        alert(a是一个空字符串)
    }else{
        alert(其它)
    }
</script>

 

以上是关于关于null,undefined,空字符串的判断的主要内容,如果未能解决你的问题,请参考以下文章

js判断 null、undefined、数字零、NaN、false、空字符串的方法

null和空字符串的判断方法比较

SQLSERVER NULL和空字符串的区别 使用NULL是不是节省空间

判断 null undefined NaN

sql 数据库 NULL 和 空字符串的区别

js undefined 与空字符串怎么比较