Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save nafeu/91d27aa98d25ef152ce438075cb52ab8 to your computer and use it in GitHub Desktop.

Select an option

Save nafeu/91d27aa98d25ef152ce438075cb52ab8 to your computer and use it in GitHub Desktop.
async function main() {
let count = 0;
const max = 5;
while (count < max) {
const result = await delay(() => `${++count} of ${max} lines...`, 1000);
console.log(result);
}
}
main();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment