본문 바로가기

FE/Vanilla

map, forEach 에서 async/await 사용하기

충격,공포,실화)  map, forEach 등 순회처리 메소드에서는 async await 을 사용하지 못합니다.

 

ㅠㅠ

 

const asdf = someArray.map(async () => {return await someFunction()});

이거 못 씀!

 

const asdf = someArray.map(() => {return someFunction()});

const qwer = await Promise.allSettled(asdf);

 

이렇게 써야함

 

ㅠㅠㅠ ㅠ