Skip to content

Instantly share code, notes, and snippets.

@mhernandez77
Forked from ericelliott/wait.js
Created April 29, 2022 04:18
Show Gist options
  • Save mhernandez77/566f613f82d2373c88cc7c7757c01752 to your computer and use it in GitHub Desktop.
Save mhernandez77/566f613f82d2373c88cc7c7757c01752 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