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:



Table Of Contents