Skip to content

Instantly share code, notes, and snippets.

@onosendi
Created April 13, 2022 17:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save onosendi/aa7a8342e71f7e5d8d71328838808ea4 to your computer and use it in GitHub Desktop.
Save onosendi/aa7a8342e71f7e5d8d71328838808ea4 to your computer and use it in GitHub Desktop.
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