Skip to content

Instantly share code, notes, and snippets.

@maifeeulasad
Created May 29, 2022 17:24
Show Gist options
  • Save maifeeulasad/044b660553e9a18d39e8fe388a76d051 to your computer and use it in GitHub Desktop.
Save maifeeulasad/044b660553e9a18d39e8fe388a76d051 to your computer and use it in GitHub Desktop.
//maybe the worst implementation
const delay = ms => new Promise(res => setTimeout(res, ms));
for(let i=0;i<100;i+=1){
if(i%4===0){
console.log("4");
}
if(i%7===0){
console.log("7");
}
await delay(1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment