void 0

作者: 终极菜鸟_424b | 来源:发表于2019-04-12 15:33 被阅读0次

    学习underscore.js的时候,发现源码中经常出现类似下面的代码:

    if (context === void 0) return func;

    if (array == null) return void 0;

    以前没有见过这种写法,到网上搜了一些资料,刚好发现stackoverflow上也有人提出类似的疑问。这里总结归纳下,做个笔记。void其实是javascript中的一个函数,接受一个参数,返回值永远是undefined。可以说,使用void目的就是为了得到javascript中的undefined。Sovoid 0is 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".length9>"void 0".length6

    2、undefined并不是javascript中的保留字,我们可以使用undefined作为变量名字,然后给它赋值。

    alert(undefined);//alerts "undefined"varundefined="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

          本文链接:https://www.haomeiwen.com/subject/mxbcwqtx.html