async.seriesTo handle events one by one

suggest change

/In async.series,all the functions are executed in series and the consolidated outputs of each function is passed to the final callback. e.g/

var async = require(‘async’); async.series([

function (callback) {
    console.log('First Execute..');
    callback(null, 'userPersonalData');
},
function (callback) {
    console.log('Second Execute.. ');
    callback(null, 'userDependentData');
}

], function (err, result) { console.log(result); });

//Output:

First Execute.. Second Execute.. [‘userPersonalData’,‘userDependentData’] //result

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


async.js:
* async.seriesTo handle events one by one

Table Of Contents
1 npm
25 async.js
41 cli
43 grunt
59 Hack
64 ES6
67 Redis
69 MongoDB
86 MongoDB
87 Lodash
91 CORS
105 N-API
108 Require