1:function test() {
2: console.log(a);
3: console.log(foo());
4:var a = 1;
5:function foo() {
6:return 2;
7: }
8: }
9:
10: test();
hulukid
相关分类