Skip to content

Instantly share code, notes, and snippets.

@omartrigui
Created March 1, 2018 12:55
Show Gist options
  • Save omartrigui/90088c28ca5babc1154ecc55a9811016 to your computer and use it in GitHub Desktop.
Save omartrigui/90088c28ca5babc1154ecc55a9811016 to your computer and use it in GitHub Desktop.
Looping with async/await
(async() => {
for (let param of params) {
try {
let result = await asyncFunction(param);
console.log(result);
} catch (error) {
console.error(error);
}
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment