Skip to content

Instantly share code, notes, and snippets.

@TheMarini
Forked from ericelliott/wait.js
Created July 2, 2018 21:33
Show Gist options
  • Save TheMarini/3639ee67b04e0662fcb1c36d73d92bca to your computer and use it in GitHub Desktop.
Save TheMarini/3639ee67b04e0662fcb1c36d73d92bca 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