Skip to content

Instantly share code, notes, and snippets.

@kunigami
Last active July 1, 2019 01:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kunigami/df74f8fbf46a97efae85767649494dbd to your computer and use it in GitHub Desktop.
Save kunigami/df74f8fbf46a97efae85767649494dbd to your computer and use it in GitHub Desktop.
function f() {
return Promise.resolve(10);
}
function g() {
return f().then(r => {
return r + 1;
});
}
g().then(r => console.log(r));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment