js 中null 和 undifined

Posted

tags:

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

1.一个重要问题

  null == undifined (true) ; null === undefined (false)

  为什么是这样的呢?

    undifined是未赋值的基本数据类型,未定义;

    null是未赋值的引用数据类型,不存在

  也就是说null 是存放在堆中的,undefined是存放在栈中的

2.   typeof null; //object               typeof:undefined; //undifined

  undifined是全局对象的一个特殊属性,其值为undefined类似的专用值undefined

3.null参与计算时会自动转换为0

  123 + null ; //123

  123 + undefines; //NAN

以上是关于js 中null 和 undifined的主要内容,如果未能解决你的问题,请参考以下文章

js中的null和undefined

JS中undefined和null的区别?什么时候应该赋值null?

JS 中如何判断 undefined 和 null

js 中null 和 undifined

JS中NULL和undifined区别及NULL的作用

js中null和undefined的区别