|
|
|
|
|
by laughinghan
2457 days ago
|
|
I think you missed this part: "instead make developers explicitly say when they wish for the result to be async" So using Promise.all() would be as simple as: const results = Promise.all(async fetch(url1), async fetch(url2))
|
|