Tell us what’s happening:
I don’t know what is wrong with my solution.
Your code so far
const sum = (function() {
"use strict";
return function sum(...nums) {
let total = nums.reduce((a,b) => a+b, 0);
return total;
};
})();
console.log(sum(1, 2, 3)); // 6
Your browser information:
User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36
.
Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/es6/use-the-rest-operator-with-function-parameters