Created
April 13, 2022 17:33
-
-
Save onosendi/aa7a8342e71f7e5d8d71328838808ea4 to your computer and use it in GitHub Desktop.
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
function sleep() { | |
return new Promise((resolve) => { | |
setTimeout(resolve, 2000); | |
}); | |
} | |
async function foo() { | |
const bar = // really big array | |
await sleep(); | |
foo(); | |
} | |
foo(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment