Calculates the sum of an array of numbers.
The array of numbers to sum.
The sum of all numbers in the array.
const numbers = [1, 2, 3, 4, 5];arrSum(numbers);//=> 15 Copy
const numbers = [1, 2, 3, 4, 5];arrSum(numbers);//=> 15
Generated using TypeDoc
Calculates the sum of an array of numbers.