单项选择题
以下关于模块化开发与按需加载的适用场景不符合的是()
A.应用复杂 B.需要长期维护 C.对性能要求苛刻 D.短期项目
单项选择题 var hel="hello"; (function(){ var word="World"; console.log(hel+word); })();以上代码最后一次打印的结果是( )
单项选择题 foo(); function foo(){ console.log(a); var a=2; }描述错误的是()
单项选择题 function test() { console.log(a); console.log(fun()); var a = 1; function fun() { return 2; } } test();结果是()