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的主要内容,如果未能解决你的问题,请参考以下文章