ES6 - Use the Rest Parameter with Function Parameters

Tell us what’s happening:
whats wrong in this code please can anyone let me know

Your code so far

const sum = (...n) => {
  const args = [];
  let total = 0;
  for (let i = 0; i < n.length; i++) {
    total += n[i];
  }
  return total;
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36

Challenge: ES6 - Use the Rest Parameter with Function Parameters

Link to the challenge:

sum should be an arrow function which uses the rest parameter syntax (...) on the args parameter.

You did not use the required variable name.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.