Lodash - unzipWith 方法



语法

_.unzipWith(array, [iteratee=_.identity])

此方法类似于 _.unzip,只是它接受迭代器来指定如何合并重新组合的值。迭代器使用每个组的元素进行调用:(...group)。

自变量

  • array (Array) − 要处理的已分组元素的数组。

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

输出

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

示例

var _ = require('lodash');
var result = _.zip([1, 2], [10, 20]);
console.log(result);

result = _.unzipWith(result, _.add);
console.log(result);

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

命令

\>node tester.js

输出

[ [ 1, 10 ], [ 2, 20 ] ]
[ 3, 30 ]
lodash_array.htm
广告