在 Array.forEach 中使用 Async 实现全部执行
2021-11-19 本文已影响0人
AR7_
如何在 Array.forEach 中正确使用 Async
const arr = [1, 2, 3];
await Promise.all(arr.map(async (i) => {
await sleep(10 - i);
console.log(i);
}));
const arr = [1, 2, 3];
await Promise.all(arr.map(async (i) => {
await sleep(10 - i);
console.log(i);
}));