Lodash - uniqBy 方法



语法

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

此方法类似于 _。uniq,但它接受 iteratee,对数组中的每个元素调用,以生成计算唯一性的条件,结果值顺序由它们在数组中出现的顺序决定。使用一个参数调用 iteratee:(value)。

参数

  • array (Array) - 要检查的数组。

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

输出

  • (Array) - 返回新的无重复数组。

示例

var _ = require('lodash');
var numbers = [1.1, 2.1, 2.3, 4.2]
var result = _.uniqBy(numbers, Math.floor);
console.log(result);

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

命令

\>node tester.js

输出

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