书上说这样会报错:function test() { var message = 'hi';
}
test();
alert(message);这样确实报错了,把message换个别的名字也报错了,但是如果把message替换成name,如下,是可以执行 alert(name) 的,为什么?nafunction test() { var name = 'hi';
}
test();
alert(name);
添加回答
举报
0/150
提交
取消