一天惬意的下午。猫哥在群里发了一道头条面试题,如下: async function async1(){ console.log('async1 start') await async2() console.log('async1 end') } async function async2(){ console.log('async2') } console.log('script start') setTimeout(function(){ console.log('setTimeout') }...