首页 > 代码库 > 【Javascript高级程序设计】数据类型与typeof
【Javascript高级程序设计】数据类型与typeof
数据类型:undefined、null、boolean、string、number、复杂数据类型object 共六种
typeof:undefined、object、boolean、string、number、function 六种
console.log(typeof null); //object null值表示一个空对象指针
undefined主要目的是用于比较。可以区分空对象指针与未经初始化的变量。
var message; console.log(message); //undefined console.log(age); //错误 console.log(typeof message); //undefined; console.log(typeof age); //undefined;
console.log(null == undefined); //true
//undefined值是派生自null值的
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。