标签: javascript hoisting
我只是不明白吊装背后的原因。
var a = 10; function test() { alert(a); var a = 20; }
由于JavaScript提升,我将未定义为a的值。 将所有声明放在最顶层的任何具体原因。