87,996
社区成员




var a = 123;
function test() {
document.write(a);
}
test()
var a = 123;
function test() {
document.write(a);
var a = 345;
}
test();
a = 123;
function test() {
document.write(a);
a = 345;
}
test();
a = 123;
function test() {
document.write(a);
var a = 345;
}
test();