Skip to content

Instantly share code, notes, and snippets.

@suissa
Created April 19, 2019 23:16
Show Gist options
  • Save suissa/ac3402b1d271977d134c12066ba2f7cc to your computer and use it in GitHub Desktop.
Save suissa/ac3402b1d271977d134c12066ba2f7cc to your computer and use it in GitHub Desktop.
wait with Promise and setTimeout
const wait = (timeout) => (new Promise(resolve => setTimeout(resolve, timeout)))
const fn = () => console.log('oii')
wait(5000).then(fn)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment