Is async.each a working asynchronous iteration array?
Is async.eachSeries running in a synchronous array mode, iterating (it really expects a response)
I ask them because both have callbacks, but async.each works as an asynchronous array, iterating for ex:
for (var i = 0; i < data.length; i++) {
(function (i) {
request(data[i],function(body){
console.log(body)
});
})(i);
source
share