Skip to content

Instantly share code, notes, and snippets.

@christkv
Created October 27, 2014 16:41
Show Gist options
  • Save christkv/dc3f50b8f1d1e4c3ced6 to your computer and use it in GitHub Desktop.
Save christkv/dc3f50b8f1d1e4c3ced6 to your computer and use it in GitHub Desktop.
var count = items.length;
for(var i = 0; i < items.length; i++) {
doSomething(function(err) {
count = count - 1;
if(count == 0) {
console.log("DONE")
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment