Computes the sum of all values in an iterable of numbers
iterable containing numbers to sum
sum of all values (0 if empty)
sum([1, 2, 3]); // 6 (1+2+3) Copy
sum([1, 2, 3]); // 6 (1+2+3)
Computes the sum of all values in an iterable of numbers