Skip to content

Instantly share code, notes, and snippets.

@hybridknight
Last active December 17, 2015 15:08
Show Gist options
  • Save hybridknight/5629115 to your computer and use it in GitHub Desktop.
Save hybridknight/5629115 to your computer and use it in GitHub Desktop.
function method1() {
tryCallApi(function doIt(value) {
// use value
});
}
function tryCallApi(callback) {
var result = callApi();
result && callback(result);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment