Google News
logo
Lodash - Interview Questions
Lodash _.sum Method
 
The _.sum() function calculates the sum of array values.
Example :
const vals = [-2, 0, 3, 7, -5, 1, 2];

const sum = _.sum(vals);
console.log(sum);
In the code example, we compute and print the sum of array values.
6
Advertisement