Lodash _.minBy() 方法
Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。
_.minBy()方法用于通过使用 Iteratee函数迭代数组中的每个元素来计算原始数组的最小值。它与 _.min()函数几乎相同。
句法:
_.minBy( 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 _.minBy() method
let min_val =
_.minBy(arr, function(o) { return o.n; });
// Printing the output
console.log(min_val);
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Original array
var arr = [{ 'n': 10 }, { 'n': 5 },
{ 'n': 3 }, { 'n': 12 }];
// Use of _.minBy() method
let min_val = _.minBy(arr, 'n');
// Printing the output
console.log(min_val);
输出:
{ 'n': 2 }
示例 2:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Original array
var arr = [{ 'n': 10 }, { 'n': 5 },
{ 'n': 3 }, { 'n': 12 }];
// Use of _.minBy() method
let min_val = _.minBy(arr, 'n');
// Printing the output
console.log(min_val);
输出:
{ 'n': 3 }