ds-algo-study
Version:
Just experimenting with publishing a package
23 lines (16 loc) • 522 B
JavaScript
/***********************************************************************
Write a function named `restSum` that accepts all incoming parameters and sums them.
**Hint**: Use rest parameter syntax!
Examples:
restSum(3,5,6); // => 14
restSum(1, 2, 3, 4, 5, 6, 7, 8, 9); // => 14
restSum(0); // => 0
***********************************************************************/
function restSum(...otherNums) {
let sum = 0;
otherNums.forEach(function(num) {
sum += num;
});
return sum;
}
module.exports = restSum;