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/
网友评论