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