Lodash - zipWith 方法



语法

_.zipWith([arrays], [iteratee=_.identity])

此方法类似于 _zip,只是它接受迭代器来指定应如何组合分组值。对每个组的元素调用迭代器:(...group)。

参数

  • [arrays] (...Array) − 要处理的数组。

  • [iteratee=_.identity] (Function) − 用于合并分组值函数。

输出

  • (Array) − 返回分组元素的新数组。

示例

var _ = require('lodash');
 
var result = _.zipWith([1, 2], [10, 20], function(a, b) {
   return a + b;
});
console.log(result);

将上述程序保存在 tester.js 中。运行以下命令来执行此程序。

命令

\>node tester.js

输出

[ 11, 22 ]
lodash_array.htm
广告