Skip to content

Instantly share code, notes, and snippets.

@gabrielu
Last active June 13, 2018 16:02
Show Gist options
  • Save gabrielu/aa0aeb5a1c55b9909ee91b6fdb2ff963 to your computer and use it in GitHub Desktop.
Save gabrielu/aa0aeb5a1c55b9909ee91b6fdb2ff963 to your computer and use it in GitHub Desktop.
const promise = new Promise((resolve/* , reject */) => {
const wait = setTimeout(() => {
clearTimeout(wait);
resolve('Promise complete!');
}, 2000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment