-
-
Save primitiveshaun/617db8a93f56156b370d44f0e04d08f3 to your computer and use it in GitHub Desktop.
Wait -- an ES6 promise example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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