Skip to content

Instantly share code, notes, and snippets.

@berat
Created June 22, 2020 11:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save berat/b0551dbe1ced80928082812ede45e459 to your computer and use it in GitHub Desktop.
Save berat/b0551dbe1ced80928082812ede45e459 to your computer and use it in GitHub Desktop.
let arr = ["a", "b", "c", "d"];
let seconds = 1000
arr.forEach((item, index) => {setTimeout(() => {console.log(item)}, seconds); seconds += 1000;})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment