Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

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

Select an option

Save nafeu/ff939be39cbff169b165354d5635694c to your computer and use it in GitHub Desktop.
async function main() {
const delaysInMs = [3000, 2000, 1000];
for (const time of delaysInMs) {
const result = await delay(() => `print after ${time / 1000} second(s)`, time);
console.log(result);
}
}
main();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment