Lodash - maxBy 方法



语法

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

此方法类似于 _.max,但它接受 iteratee,该 iteratee 对数组中的每一个元素进行调用,以生成 criterion,值按此进行排序。使用一个参数调用 iteratee:(value)。

参数

  • array (数组) − 要迭代的数组。

  • [iteratee=_.identity] (函数) − 每元素调用的 iteratee。

输出

  • (*) − 返回最大值。

示例

var _ = require('lodash');
var values = [{ 'n': 1 }, { 'n': 2 }];
var result = _.maxBy(values, function(o) { return o.n; });

console.log(result);
 
result = _.maxBy(values, 'n');
console.log(result);

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

命令

\>node tester.js

输出

{ n: 2 }
lodash_math.htm
广告