Skip to content

Instantly share code, notes, and snippets.

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