Skip to content

Instantly share code, notes, and snippets.

@ivantsov
Created October 11, 2017 18:57
Show Gist options
  • Save ivantsov/1da8cf31add6b31cdc5ee0585026a399 to your computer and use it in GitHub Desktop.
Save ivantsov/1da8cf31add6b31cdc5ee0585026a399 to your computer and use it in GitHub Desktop.
foo()
.then(function(res) {
console.log('inside then 1: ' + res);
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