码迷,mamicode.com
首页 > 其他好文 > 详细

undefined 与 null

时间:2018-10-24 17:43:17      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:性能   nbsp   eof   typeof   lse   OLE   goole   区分   als   

typeof null  -   ‘object

typeof undefined   -  ‘undefined‘ 

 

Boolean(null)    -  false

Boolean(undefined)  -  false

 

Number(undefined)    -  NaN

Number(null)    -   0

 

123 + null    -  123   (null  - 0)

123 + undefined   -   NaN

 

null == undefined     -  true

‘undefined‘ in window    -  true

 

goole

keys(window).length   372      避免直接与 undefined 作比较(避免性能浪费,应该使用 Boolean 去区分)

undefined 与 null

标签:性能   nbsp   eof   typeof   lse   OLE   goole   区分   als   

原文地址:https://www.cnblogs.com/justSmile2/p/9844604.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!