Tell us what’s happening:
I keep getting caught on the very last objective where I am to use the ...
rest parameter on the args
parameter. What do I need to do to pass that test?
Your code so far
const sum=function sum(...args){
return args.reduce((a,b)=>a+b, 0);
}
console.log(sum(1, 2, 3)); // 6
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36
.
Challenge: Use the Rest Parameter with Function Parameters
Link to the challenge:
https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/es6/use-the-rest-parameter-with-function-parameters