Skip to content

Instantly share code, notes, and snippets.

@dmassiani
Created February 27, 2020 09:15
Show Gist options
  • Save dmassiani/fd93739a051a0741c502370936e1820a to your computer and use it in GitHub Desktop.
Save dmassiani/fd93739a051a0741c502370936e1820a to your computer and use it in GitHub Desktop.
const start = async () => {
await asyncForEach([1, 2, 3], async (num) => {
await waitFor(50);
console.log(num);
});
console.log('Done');
}
start();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment