Skip to content

Instantly share code, notes, and snippets.

@hbi99
Last active February 22, 2018 11:30
Show Gist options
  • Save hbi99/ce924e0f181c3d1da91d4b0c4df5818b to your computer and use it in GitHub Desktop.
Save hbi99/ce924e0f181c3d1da91d4b0c4df5818b to your computer and use it in GitHub Desktop.
Qure
.wait(1000)
.then(function() {
// executed after 1 second
console.log(1);
})
.wait(1000)
.then(function() {
// executed after 1 second after previous log
console.log(2);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment