Compute the sum of the given numbers.
sum(1, 2, 3, 4, 5);// => 15 Copy
sum(1, 2, 3, 4, 5);// => 15
The numbers to sum.
The sum of the numbers.
Compute the sum of the given numbers.
Example