单项选择题
A.undefined 2
B.2 undefined
C.undefined
D.2
单项选择题 (function() { console.log(3); setTimeout(function(){console.log(2)}, 2000); setTimeout(function(){console.log(1)}, 0); console.log(4); })();打印的结果是()
单项选择题 var str = str; function fun1(){ str = fun1; } function fun2(){ str = fun2; } console.log(str); fun1(); console.log(str); fun2();以上打印的结果是()
单项选择题 模块化开发的基础是()