for await(const item of list){

  await item;

}


vs


for (const item of list){

  await item;

}


둘다 똑같은거 아냐?