JS Coding Questions Logo
JS Coding Questions
#417đź’Ľ Interview

What are the differences between arguments object and rest parameter

Advertisement

728x90

There are three main differences between arguments object and rest parameters

1. The arguments object is an array-like but not an array. Whereas the rest parameters are array instances.

2. The arguments object does not support methods such as sort, map, forEach, or pop. Whereas these methods can be used in rest parameters.

3. The rest parameters are only the ones that haven’t been given a separate name, while the arguments object contains all arguments passed to the function

Advertisement

Responsive Ad
🎯 Practice NowRelated Challenge

JavaScript Coding Exercise 74

Test your knowledge with this interactive coding challenge.

Start Coding

Advertisement

728x90
417of476
What are the differences between arguments object and rest parameter | JSCodingQuestions.com