📜  Lodash _.maxBy() 方法

📅  最后修改于: 2022-05-13 01:56:33.756000             🧑  作者: Mango

Lodash _.maxBy() 方法

Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。

_.maxBy()方法用于通过使用 Iteratee函数迭代数组中的每个元素来计算原始数组的最大值。它与 _.max()函数几乎相同。

句法:

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

参数:此方法接受上面提到的两个参数,如下所述:

  • 数组:它是该方法迭代以获得最大元素的数组。
  • iteratee:它是为数组中的每个元素调用的函数。

返回值:此方法返回最大元素。

示例 1:

Javascript
// Requiring the lodash library  
const _ = require("lodash");  
  
// Original array 
var arr = [{ 'n': 4 }, { 'n': 2 }, { 'n': 6 }];
    
// Use of _.maxBy() method 
let max_obj = _.maxBy(arr, function(o) { return o.n; }); 
        
// Printing the output  
console.log(max_obj);


Javascript
// Requiring the lodash library  
const _ = require("lodash");  
  
// Original array 
var arr = [{ 'n': 10 }, { 'n': 5 }, 
           { 'n': 3 }, { 'n': 12 }];
    
// Use of _.maxBy() method 
let max_obj = _.maxBy(arr, 'n'); 
        
// Printing the output  
console.log(max_obj);


输出:

{ 'n': 6 }

示例 2:

Javascript

// Requiring the lodash library  
const _ = require("lodash");  
  
// Original array 
var arr = [{ 'n': 10 }, { 'n': 5 }, 
           { 'n': 3 }, { 'n': 12 }];
    
// Use of _.maxBy() method 
let max_obj = _.maxBy(arr, 'n'); 
        
// Printing the output  
console.log(max_obj);

输出:

{ 'n': 12 }