Unterschied zwischen async.each und async.eachSeries

Ist async.each Arbeiten als asynchrones Array iteriert?

Ist async.eachSeries Arbeiten als synchrones Array iteriert? (es wartet tatsächlich auf Antwort)

Ich frage diese, weil beide Rückrufe haben, aber async.each funktioniert wie asynchrones Array, das zum Beispiel iteriert:

//This is traditional way to iterate an array with callback functions in node.js
//Is this same with async.each ? i want to know it actually.

for (var i = 0; i < data.length; i++) {
 (function (i) {
  request(data[i],function(body){
   console.log(body)
  });
 })(i);

//if this codes and async.each are doing same things , 
//i know that async gives me an aert when all finished thats the difference.

Antworten auf die Frage(6)

Ihre Antwort auf die Frage