Lodash _.meanBy
2021-09-24 10:25 更新
_.meanBy(array, [iteratee=_.identity])
这个方法类似_.mean, 除了它接受 iteratee 来调用 array中的每一个元素,来生成其值排序的标准。 iteratee 会调用1个参数: (value) 。
添加版本
4.7.0
参数
- array (Array): 要迭代的数组。
- [iteratee=_.identity] (Function): 调用每个元素的迭代函数。
返回
(number): 返回平均值。
例子
var objects = [{ 'n': 4 }, { 'n': 2 }, { 'n': 8 }, { 'n': 6 }];
_.meanBy(objects, function(o) { return o.n; });
// => 5 // The `_.property` iteratee shorthand.
_.meanBy(objects, 'n');
// => 5
以上内容是否对您有帮助:
更多建议: