lxq.link
postscategoriestoolsabout

JS 里面 null 和 undefined 的区别

null 与 undefined 的值相等,但类型不相等:

typeof undefined              // undefined
typeof null                   // object
null === undefined            // false
null == undefined             // true
2019-06-03