Last active
August 22, 2019 23:28
-
-
Save kalda341/7546c5d9b10bced7da39767cdd1b9964 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| 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