Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
yourad_io
on April 16, 2022
|
parent
|
context
|
favorite
| on:
I Avoid Async/Await
Sometimes you want to do things sequentially, so for..of x { await } is the way to go
If you want parallelism: await Promise.all(x.map(...))
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
If you want parallelism: await Promise.all(x.map(...))