Skip to content

Instantly share code, notes, and snippets.

@zlatkov
Created October 11, 2017 14:40
Show Gist options
  • Save zlatkov/33582dc127209706688796092e268772 to your computer and use it in GitHub Desktop.
Save zlatkov/33582dc127209706688796092e268772 to your computer and use it in GitHub Desktop.
sum(fetchX(), fetchY())
.then(
// fullfillment handler
function(sum) {
console.log( sum );
},
// rejection handler
function(err) {
console.error( err ); // bummer!
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment