首页 > 代码库 > JS中null与undefined的区别
JS中null与undefined的区别
1、typeof操作符
用来检测变量的数据类型
例:typeof 3.14 //返回number
typeof [1,2,3] //返回object
2、null
只有一个值的特殊类型,表示一个空对象引用(可以用null来清空对象)
例:var person = null;//值为空,但类型为对象
typeof person; //返回object
3、undefined
没有设置值的变量,(可用来清空变量、属性、和方法)
例:var person ;
person = undefined;//值为undefined,类型也为undefined
4、null与undefined的区别
例:typeof undefined //返回undefined
typeof null //返回object
null === undefined //返回false
null == undefined //返回true
JS中null与undefined的区别
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。