Answers for "What are the benefits of using spread syntax and how is it different from rest syntax?"

7

the rest operator javascript

function sum(...numbers) {
	return numbers.reduce((accumulator, current) => {
		return accumulator += current;
	});
};
 
sum(1,2) // 3
sum(1,2,3,4,5) // 15
Posted by: Guest on January-14-2020

Code answers related to "What are the benefits of using spread syntax and how is it different from rest syntax?"

Code answers related to "Javascript"

Browse Popular Code Answers by Language