Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nem035/fae032d6e6c767e69320f8f78c9d3ff3 to your computer and use it in GitHub Desktop.
Save nem035/fae032d6e6c767e69320f8f78c9d3ff3 to your computer and use it in GitHub Desktop.
var globalState; // callbacks have to talk through global state
httpGet(function callback1(value) {
globalState.callback1 = value;
})
httpGet(function callback2(value) {
globalState.callback2 = value;
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment