Skip to content

Instantly share code, notes, and snippets.

@ivantsov
Last active October 8, 2017 10:07
Show Gist options
  • Save ivantsov/06a2250333b119e4b64b60f714b20c9d to your computer and use it in GitHub Desktop.
Save ivantsov/06a2250333b119e4b64b60f714b20c9d to your computer and use it in GitHub Desktop.
// 1
foo()
.then(function(res) {
return bar();
});
// 2
foo()
.then(bar);
// 3
foo()
.then(bar());
// 4
foo()
.then(function(res) {
bar();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment