美文网首页
JavaScript Hoisting

JavaScript Hoisting

作者: 成江 | 来源:发表于2018-02-18 23:30 被阅读4次

    JavaScript hoists function declarations and variable declarations to the top of the current scope.

    Variable assignments are not hoisted.

    Declare functions and variables at the top of your scripts, so the syntax and behavior are consistent with each other.

    函数被提升了,即函数定义可以在函数使用之后。但请注意:Function Hoisting仅适用于使用函数声明方式定义的函数。这是我要分开讲变量提升和函数提升的一个重要原因。
    当命名的函数作为函数表达式的一部分时,不会被提升。
    扩展:
    http://creeperyang.github.io/2014/10/javascript-hoisting/

    相关文章

      网友评论

          本文标题:JavaScript Hoisting

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