Skip to content

Instantly share code, notes, and snippets.

@guyellis
Last active August 29, 2015 14:14
Show Gist options
  • Save guyellis/c3b330068c7609735bf4 to your computer and use it in GitHub Desktop.
Save guyellis/c3b330068c7609735bf4 to your computer and use it in GitHub Desktop.
async.each()
var async = require('async');
var arr = [1,2,3,4];
async.each(arr,function(item, cb){
setTimeout(function() {
console.log('#1: ', item);
return cb();
}, Math.random()*2000);
}, function(err){
console.log('#1 Final call ', err);
});
console.log('#1 should print first');
async.each(arr,function(item, cb){
setTimeout(function() {
console.log('#2: ', item);
return cb();
}, Math.random()*2000);
}, function(err){
console.log('#2 Final call ', err);
});
console.log('#2 should print second');
/*
Example output:
#1 should print first
#2 should print second
#2: 2
#2: 4
#1: 3
#2: 1
#1: 1
#1: 4
#1: 2
#1 Final call undefined
#2: 3
#2 Final call undefined
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment