笔试题

本文详细解析了JavaScript中异步代码的执行流程,通过具体的示例代码展示了async/await函数、Promise对象以及setTimeout等API的执行时机和顺序。帮助读者深入理解JavaScript的异步编程机制。
摘要由CSDN通过智能技术生成
  1. 异步笔试题

async function async1() {
  console.log("async1 start"); //2
  await async2();
  console.log("async1 end"); //6
}
async function async2() {
  console.log("async2"); //3
}
console.log("script start"); // 1
setTimeout(function () {
  console.log("setTimeout"); //8
}, 0);
async1();
new Promise(function (resolve) {
  console.log("promise1"); // 4
  resolve();
}).then(function () {
  console.log("promise2"); //7
});
console.log("script end"); //5

输出

script start
async1 start
async2
promise1
script end
async1 end
promise2
setTimeout
 
const promise = new Promise((resolve, reject) => {
  console.log(1);
  resolve();
  console.log(2);
});
promise.then(() => {
  console.log(3);
});
console.log(4);


//1243 promise构造函数同步执行,then方法异步执行的
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值