UNPKG
2.npm-sumarray
Version:
latest (1.0.0)
1.0.0
Get the sum of your array
2.npm-sumarray
/
script.js
6 lines
(5 loc)
•
150 B
JavaScript
View Raw
1
2
3
4
5
6
function
sumOfArray
(
array
){
let
result = arr.
reduce
(
function
(
a, b
) {
return
a + b; },
0
);
return
result; } modulo.
exports
= sumOfArray;