码迷,mamicode.com
首页 > 编程语言 > 详细

javascript中null与undefined的区别

时间:2016-11-07 17:44:12      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:bsp   指针   定义变量   type   undefined   返回   define   asc   定义   

1、null

null是一个对象,表示一个空对象指针,typeof(null)返回object,null参与运算时会转化为0,将对象初始化为null,可以知道变量是否保存了对象的引用

2、undefined

typeof(undefined)返回undefined

定义变量但未对其进行初始化时,其值为undefined

null == undefined true

null === undefined false

 

javascript中null与undefined的区别

标签:bsp   指针   定义变量   type   undefined   返回   define   asc   定义   

原文地址:http://www.cnblogs.com/lhyhappy65/p/6039752.html

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