Created
January 14, 2019 10:58
-
-
Save batrudinych/77b6f71e189cdcdc7a7823504c33a25d to your computer and use it in GitHub Desktop.
Running async operations sequentially and harvesting the results
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 take0() { | |
// Harvesting | |
const results = []; | |
for (const argument of listOfArguments) { | |
const index = await asyncOperation(argument); | |
results.push(index); | |
} | |
return results; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment