Skip to content

Instantly share code, notes, and snippets.

@medikoo
Last active December 10, 2015 13:58
Show Gist options
  • Save medikoo/4444041 to your computer and use it in GitHub Desktop.
Save medikoo/4444041 to your computer and use it in GitHub Desktop.
Promise chaining
a.then(null, function () {
// A failed, patch it
}).then(function () {
// B logic
}).then(function () {
// C logic
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment