/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 (cal...