Skip to content

Instantly share code, notes, and snippets.

@zlatkov
Created January 5, 2021 11:47
Show Gist options
  • Save zlatkov/0a3808601b770d9fcb28ef179b5132a7 to your computer and use it in GitHub Desktop.
Save zlatkov/0a3808601b770d9fcb28ef179b5132a7 to your computer and use it in GitHub Desktop.
function asyncFoo(x, callback) {
// Some async code...
}
asyncFoo(‘testParam’, (err, result) => {
If (err) {
// Handle error.
}
// Do some other work.
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment