JavaScript中0, "", null, false, undefined的区别

JavaScript0, "", null, false, undefined返回的Boolean类型均为false。然而它们所指的并不是同一个概念,需要加以区分。

首先先看一段代码:

document.write(typeof(0))       //number
document.write(typeof(""))      //string
document.write(typeof(null))        //object
document.write(typeof(false))       //boolean
document.write(typeof(undefined))   //undefined

从上述代码可以看出:0是数字类型对象,空字符串是字符串类型对象,nullobject对象,false是布尔类型对象,undefined还是undefined类型.。

对于null为什么是一个object对象,这是JavaScript最初实现的一个错误,后来被ECMAScript沿用下来。可以将它理解为一个不存在的对象的占位符。

使用==操作将0false与其他对象进行比较:

document.write(false==undefined);   //false
document.write(false==null);        //false
document.write(undefined==0);       //false
document.write(null==0);        //false
document.write(""==0);          //true
document.write(false==0);       //true
document.write(false=="");      //true
document.write(null==undefined);    //true

观察可发现:0、""false是相等的,nullundefined是相等的,而undefinednull并不等于false对象。
可以把0、""false归为一类,称之为“假值”,把nullundefined归为一类,称之为“空值”。假值还是一个有效的对象,所以可以对其使用toString等类型相关方法,空值则不行。

document.write(false.toString());    // false
document.write("".length);         // 0
document.write((0).toString());   // 0
document.write(undefined.toString());   // throw exception "undefined has no properties"
document.write(null.toString());        // "null has no properties"

undefined表示无效对象,null表示空对象。当声明的变量未被初始化时其默认值为undefined;如果被赋予null,则代表变量初始化值为空值。ECMAScript认为undefined是从null派生出来的所以把他们定义为相等。
以下两种方式会输出false

document.write(null===undefined);        //false 
document.write(typeof(null)==typeof(undefined)); //false

因为===代表的是绝对等于,判断值及类型是否完全相等。nullundefined各自的type在前面已经说过。

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值