Created
October 11, 2017 18:57
-
-
Save ivantsov/1da8cf31add6b31cdc5ee0585026a399 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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