null和undefined的区别
Posted ustc-yy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了null和undefined的区别相关的知识,希望对你有一定的参考价值。
console.log(null==undefined); // true console.log(null===undefined); // false console.log(null+10); // 10 console.log(undefined+10); // NaN
以上是关于null和undefined的区别的主要内容,如果未能解决你的问题,请参考以下文章