Skip to content

Instantly share code, notes, and snippets.

@devdays
Created December 9, 2014 02:20
Embed
What would you like to do?
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