Array to process
Callback for each item. Parameter 2 is the callback function to process the next item. Parameter 3 is item index.
Optional
final_callback: anyFinal callback after everything has been done.
asyncForEach(arr, function (item, next) {
...
next();
});
asyncForEach
Asynchronously process each item in an array.