gpt4 book ai didi

javascript - promise 订单调用

转载 作者:行者123 更新时间:2023-12-05 02:36:00 24 4
gpt4 key购买 nike

<分区>

给定以下代码

Promise.resolve().then(() => {
console.log(0);
return Promise.resolve(4);
}).then((res) => {
console.log(res)
})
Promise.resolve().then(() => {
console.log(1);
}).then(() => {
console.log(2);
}).then(() => {
console.log(3);
}).then(() => {
console.log(5);
}).then(() => {
console.log(6);
})

我认为这会给出 0 4 1 2 3 5 6 但输出是 0 1 2 3 4 5 6

谁能评论为什么会这样?

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com