单项选择题
(function() { console.log(3); setTimeout(function(){console.log(2)}, 2000); setTimeout(function(){console.log(1)}, 0); console.log(4); })();打印的结果是()
A.1 2 3 4 B.2 1 3 4 C.4 3 1 2 D.3 4 1 2
A.str fun2 B.str fun1 C.fun1 fun2 D.fun2 fun1
A.函数 B.对象 C.字符串 D.数字