Skip to content

Instantly share code, notes, and snippets.

@devdays
Created December 9, 2014 02:20
Show Gist options
  • Save devdays/0fe4898b9d6f205266cd to your computer and use it in GitHub Desktop.
Save devdays/0fe4898b9d6f205266cd to your computer and use it in GitHub Desktop.
Object JavaScript - Using Q thenResolve
Q.delay(1000)
.thenResolve('I love Q!')
.then(function (msg) {
alert(msg);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment