Skip to content

Instantly share code, notes, and snippets.

@OMGZui
Created November 14, 2022 15:09
Show Gist options
  • Save OMGZui/1012b6ec35bf433ad62be50723f3f94a to your computer and use it in GitHub Desktop.
Save OMGZui/1012b6ec35bf433ad62be50723f3f94a to your computer and use it in GitHub Desktop.
function test(callback) {
try {
return callback();
} catch (e) {
console.log(e);
throw e;
}
return 20;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment