服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

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

这个方法就像_.mean,只是它接受为数组中每个元素调用的iteratee来生成要进行平均的值。 迭代器被调用一个参数:(value)。

初始

4.7.0

参数
  1. array (Array):迭代的数组。
  2. [iteratee=_.identity] (Function):每个元素调用的迭代器。
返回

(数字):返回平均值。

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