Undefined 和 Null 的区别

来源:互联网 发布:淘宝网宠物 编辑:程序博客网 时间:2024/05/18 00:05

null 和 underfined 的值相等,但类型不等:

typeof undefined             // undefined
typeof null                  // object
null === undefined           // false
null == undefined            // true
原创粉丝点击