Created

Embed URL

HTTPS clone URL

SSH clone URL

You can clone with HTTPS or SSH.

Download Gist

Node.js, The Bad Parts

View callback-hell.js
1 2 3 4 5 6 7 8
//Executing 3 async functions in series
async_1(function(err1, data1){
async_2(function(err2, data2){
async_3(function(err3, data3){
//and so on...
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Something went wrong with that request. Please try again.