首页 > 代码库 > javascript中"return obj === void 0"这种写法的原因和好处
javascript中"return obj === void 0"这种写法的原因和好处
学习underscore.js的时候,发现源码中经常出现类似下面的代码:
if (context === void 0) return func; if (array == null) return void 0;
以前没有见过这种写法,到网上搜了一些资料,刚好发现stackoverflow上也有人提出类似的疑问。这里总结归纳下,做个笔记。void其实是javascript中的一个函数,接受一个参数,返回值永远是undefined。可以说,使用void目的就是为了得到javascript中的undefined。Sovoid 0
is a correct and standard way to produceundefined
.
void 0 void (0) void "hello" void (new Date()) //all will return undefined
为什么不直接使用undefined呢?主要有2个原因:
1、使用void 0比使用undefined能够减少3个字节。虽然这是个优势,个人但感觉意义不大,牺牲了可读性和简单性。
>"undefined".length 9 >"void 0".length 6
2、undefined并不是javascript中的保留字,我们可以使用undefined作为变量名字,然后给它赋值。
alert(undefined); //alerts "undefined" var undefined = "new value"; alert(undefined) //alerts "new value"
Because of this, you cannot safely rely on undefined having the value that you expect。
void, on the other hand, cannot be overidden. void 0 will always return。
我在IE10,Firefox和chrome下测试,遗憾的是没有出现预期的结果。虽然上面的代码没有报错,但是并没有打印出我们期望的"new value"。
所以总体来说,使用void 0这种写法意义不大。
参考
http://stackoverflow.com/questions/7452341/what-does-void-0-mean
http://stackoverflow.com/questions/11409412/how-to-understand-return-obj-void-0-in-the-source-of-underscore
javascript中"return obj === void 0"这种写法的原因和好处