function add(...rest){ return rest.reduce((a,b)=>a+b); } var num = add(1,3,2); var num2 = add(7, 7, 7, 7) console.log(num,num2); // 6, 28
1