摘要: js 宏任务和微任务 代码 setTimeout(function() { // 异步宏任务 console.log('1'); }) new Promise(function(resolve) { // 同步 console.log('2'); }).then(function() { // 微任 阅读全文