Skip to content

Instantly share code, notes, and snippets.

@coltpini
Created May 5, 2017 22:37
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 coltpini/87fc62741d987bc78839bca1964fb31b to your computer and use it in GitHub Desktop.
Save coltpini/87fc62741d987bc78839bca1964fb31b to your computer and use it in GitHub Desktop.
let someFunction = () => {
let combined = ``;
callSomePromise.then( (val) => {
return combined + val;
}
return combined;
}
// someFunction will always return: ``
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment