Skip to content

Instantly share code, notes, and snippets.

@ladushki
Forked from ericelliott/wait.js
Created December 11, 2018 06:10
Show Gist options
  • Save ladushki/bab41cffe2383a6ea014908e43207336 to your computer and use it in GitHub Desktop.
Save ladushki/bab41cffe2383a6ea014908e43207336 to your computer and use it in GitHub Desktop.
Wait -- an ES6 promise example
const wait = time => new Promise((resolve) => setTimeout(resolve, time));
wait(3000).then(() => console.log('Hello!')); // 'Hello!'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment