If it _.zipdoes not accept an array of arrays as input, there is a technical possibility to achieve it. _.zip.apply(null, array).
, .
( , , , .)
var data =[
["1","2","3","4"],
["1","2","3","4"],
["1","2","3","4"],
["1","2","3","4"]
];
var result = _.map(_.zip.apply(null, data), function (n) {
return _.sum(_.map(n, function(x) { return +x; }));
});
console.log(result);
.