Lodash - unionBy 方法



语法

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

此方法类似于 _.union,不同之处在于它接受 iteratee,对每个数组的每个元素调用 iteratee 来生成计算唯一性的标准。结果值从发生值的第一个数组中选出。iteratee 调用时带一个参数:(value)。

参数

  • [arrays] (...Array) − 要检查的数组。

  • [iteratee=_.identity] (Function) − 为每个元素调用的 iteratee。

输出

  • (Array) − 返回一个组合值的数组。

示例

var _ = require('lodash');
var numbers = [1.1, 2.1, 2.3, 3.4]

var result = _.unionBy(numbers, [2.3, 2.6], Math.floor);
console.log(result);

将上述程序保存到tester.js 中。运行下列命令执行此程序。

命令

\>node tester.js

输出

[ 1.1, 2.1, 3.4 ]
lodash_array.htm
广告