Skip to content

Instantly share code, notes, and snippets.

@mrlannigan
Created June 23, 2015 14:17
Show Gist options
  • Save mrlannigan/f3e861f5e4471c82b9f9 to your computer and use it in GitHub Desktop.
Save mrlannigan/f3e861f5e4471c82b9f9 to your computer and use it in GitHub Desktop.
var BPromise = require('bluebird');
var prom = new BPromise(function (resolve, reject) {
console.log(1);
resolve(3);
console.log(2);
}).then(function (num) {
console.log(num);
});
$ node test.js
1
2
3
var BPromise = require('bluebird');
var prom = new BPromise(function (resolve, reject) {
console.log(1);
return resolve(3);
console.log(2);
}).then(function (num) {
console.log(num);
});
$ node test.js
1
3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment