function func1(){ setTimeout(function(){console.log("func1")},Math.random()*1000)}function func2(){ setTimeout(function(){console.log("func2")},Math.random()*1000)}function func3(){ setTimeout(function(){console.log("func3")},Math.random()*1000)} asynEach(func1,func2,func3); //输出结果:func1func2func3
添加回答
举报
0/150
提交
取消