Skip to content

Instantly share code, notes, and snippets.

@kalda341
Last active August 22, 2019 23:28
Show Gist options
  • Select an option

  • Save kalda341/7546c5d9b10bced7da39767cdd1b9964 to your computer and use it in GitHub Desktop.

Select an option

Save kalda341/7546c5d9b10bced7da39767cdd1b9964 to your computer and use it in GitHub Desktop.
function do_work(data) {
const duration = Math.random() * 100;
return fetch(data);
}
async function main() {
const results = await Promise.all(['a', 'b', 'c'].map(do_work));
console.log(results);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment