Last active
October 8, 2017 10:06
-
-
Save ivantsov/e4a11f0886aff0226caa1a2be3c19d9f 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); | |
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