undefined & null

作者: 鸭梨山大哎 | 来源:发表于2017-08-18 13:31 被阅读12次

出现场景

image.png

二者不同

undefined == null//true
undefined === null//false
Number(null)//0
5+null//5
Number(undefined)//NaN
5+undefined//NaN

思考

为何要有null,还要用undefined?

相关文章

网友评论

    本文标题:undefined & null

    本文链接:https://www.haomeiwen.com/subject/qfqarxtx.html