Skip to content

Instantly share code, notes, and snippets.

@mcsee
Last active September 6, 2023 00:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcsee/110f803da03a27f4024ebbce97154307 to your computer and use it in GitHub Desktop.
Save mcsee/110f803da03a27f4024ebbce97154307 to your computer and use it in GitHub Desktop.
asyncFunc1(function (error, result1) {
if (error) {
console.log(error);
} else {
asyncFunc2(function (error, result2) {
if (error) {
console.log(error);
} else {
asyncFunc3(function (error, result3) {
if (error) {
console.log(error);
} else {
// Nested callback continues...
}
});
}
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment