Appearance
sum(array)
Returns the sum of all numbers in array.
array
sum([1, 2, 3, 4]); // 10
pipe([1, 2, 3, 4], sum()); // 10