Lodash - sumBy 方法



语法

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

此方法类似于 _sum,但它接受 iteratee,该 iteratee 可针对数组中的每个元素调用,以生成要相加的值。该 iteratee 采用一个参数调用:(value)。

参数

  • array (数组) − 要进行迭代的数组。

  • [iteratee=_.identity] (函数) − 针对每个元素调用的 iteratee。

输出

  • (数字) − 返回和。

示例

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

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

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

命令

\>node tester.js

输出

6
6
lodash_math.htm
广告