Skip to content

Instantly share code, notes, and snippets.

@koonuf
Last active March 11, 2017 21:59
Show Gist options
  • Save koonuf/a71ad86a2224524a7bb46014afe35de7 to your computer and use it in GitHub Desktop.
Save koonuf/a71ad86a2224524a7bb46014afe35de7 to your computer and use it in GitHub Desktop.
function giveMePromise() {
return sideEffect1()
.then(() => { return sideEffect2(); })
.then(() => { sideEffect3(); });
}
function workOnPromise() {
giveMePromise().then(() => {
// we are still in "side effect 2" here
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment