Lodash _.sum() 方法
Lodash是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。
_.sum()方法用于查找数组中值的总和。
句法:
_.sum(array)
参数:此方法接受如上所述和如下所述的单个参数:
- array:此参数保存要迭代的数组。
返回值:此方法返回数组中值的总和。
示例 1:这里使用 const _ = require('lodash') 将 lodash 库导入文件。
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.sum () method
let gfg = _.sum([5, 10, 15, 20, 25]);
// Printing the output
console.log(gfg);
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.sum () method
let gfg = _.sum([8, -12, -13, 30, 45]);
// Printing the output
console.log(gfg);
输出:
75
示例 2:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.sum () method
let gfg = _.sum([8, -12, -13, 30, 45]);
// Printing the output
console.log(gfg);
输出:
58