lodash - sum方法
语法
_.sum(array)
计算数组中值之和。
参数
阵列 (数组) − 要遍历的数组。
输出
(数字) − 返回和。
示例
var _ = require('lodash'); var values = [1, 2, 3, 4, 5]; var result = _.sum(values); console.log(result);
将以上程序保存在 tester.js 中。运行以下命令来执行此程序。
命令
\>node tester.js
输出
15
lodash_math.htm
广告