-
-
Save JonathanLoscalzo/45b82d81de636a01273e71d43005a917 to your computer and use it in GitHub Desktop.
Snippet for Avoiding the async/await hell medium article
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
async function orderItems() { | |
const items = await getCartItems() // async call | |
const noOfItems = items.length | |
const promises = [] | |
for(var i = 0; i < noOfItems; i++) { | |
const orderPromise = sendRequest(items[i]) // async call | |
promises.push(orderPromise) // sync call | |
} | |
await Promise.all(promises) // async call | |
} | |
// Although I prefer it this way | |
async function orderItems() { | |
const items = await getCartItems() // async call | |
const promises = items.map((item) => sendRequest(item)) | |
await Promise.all(promises) // async call | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment