Lodash - meanBy 方法



语法

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

此方法与 _.mean 类似,不同之处在于它接受 iteratee,对数组中的每个元素调用该 iteratee 以生成要取平均值的值。带有单个参数 (value) 调用 iteratee。

参数

  • array (Array) − 要遍历的数组。

  • [iteratee=_.identity] (Function) − 按元素调用的迭代器。

输出

  • (number) − 返回平均值。

示例

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

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

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

命令

\>node tester.js

输出

2
2
lodash_math.htm
Advertisement 广告