Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nem035/97e069a30f1f80cb18faec6434e90cf2 to your computer and use it in GitHub Desktop.
Save nem035/97e069a30f1f80cb18faec6434e90cf2 to your computer and use it in GitHub Desktop.
httpGet(url1, function(res) {
// here we'll receive value1
});
httpGet(url2, function(res) {
// here we'll receive value2
});
function processValues(value) {
// we want to call this function first for value1,
// then again for value2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment