函数中声明的所有变量,无论是在哪里声明的,在整个函数中它们都是有定义的。
var scope='global';
function f() {
alert(scope);
var scope='local';
alert(scope);
}
f();
函数中声明的所有变量,无论是在哪里声明的,在整个函数中它们都是有定义的。
var scope='global';
function f() {
alert(scope);
var scope='local';
alert(scope);
}
f();