
获得徽章 15
- Promise 一段匪夷所思的代码
在下面的代码中,由于加了return Promise.resolve()
好像卡住了两次 microtask 导致了后面的 ‘4’ 在 ‘d‘ 之后输出,
按我的理解应该在 ’c‘ 后面输出才对。
有木有大佬能给我解答一下,我看了网上的资料和Promise实现,都没办法解答这个问题。
new Promise(resolve => [
resolve()
]).then(() => {
console.log('1');
new Promise(resolve => {
resolve()
}).then(() => {
console.log('2');
}).then(() => {
console.log('3');
return Promise.resolve()
}).then(() => {
console.log('4');
}).then(() => {
console.log('5');
})
}).then(() => {
console.log('a');
}).then(() => {
console.log('b');
}).then(() => {
console.log('c');
}).then(() => {
console.log('d');
}).then(() => {
console.log('e');
})展开166