js中使用0 “” null undefined需要注意

Posted 凉梁凉糕

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js中使用0 “” null undefined需要注意相关的知识,希望对你有一定的参考价值。

注意:在js中0为空(false) ,代表空的还有“”,null ,undefined;

如果做判断if(!上面的四种值);返回均为false

console.log(!null);// true
console.log(!0);//true
console.log(!"");// true
console.log(!undefined);// true

console.log(0=="");//true

console.log(0==" ");// true

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




以上是关于js中使用0 “” null undefined需要注意的主要内容,如果未能解决你的问题,请参考以下文章

JS中去除数组中的假值(0, 空,undefined, null, false)

js中的null和undefined

聊聊javascript的null和undefined

js题

js undefined 与空字符串怎么比较

js中>=跟==到底是怎么判定的?!wtf