Skip to content

Instantly share code, notes, and snippets.

@primitiveshaun
Forked from ericelliott/wait.js
Created October 8, 2019 08:17
Show Gist options
  • Save primitiveshaun/617db8a93f56156b370d44f0e04d08f3 to your computer and use it in GitHub Desktop.
Save primitiveshaun/617db8a93f56156b370d44f0e04d08f3 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