Sum of array

Contributed By: | Thu Jan 18 2024

Description
Write a function that takes an array and provides ts sum.
Examples
Example: 1
Inputs:
array: [1,2,3,59,8]
Required Result:
Output: 73
Example: 2
Inputs:
array: [4,5,6,90,114]
Required Result:
Output: 219
Example: 3
Inputs:
array: [3,4,123,21,3,12,4,4]
Required Result:
Output: 174
function arrSum(array) {
// Your code here
}
Click run to execute these test cases.
Arguments:
arrayInvalid Argument, See help