Skip to content

Instantly share code, notes, and snippets.

@IvanGuardado
Created June 16, 2014 20:06
Show Gist options
  • Save IvanGuardado/631f66be4c9767106c19 to your computer and use it in GitHub Desktop.
Save IvanGuardado/631f66be4c9767106c19 to your computer and use it in GitHub Desktop.
Node.js, The Bad Parts
//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