Using the rest operator in function parameters collects the rest of the arguments into an ________.
- Object
- Array
- Iterable
- String
The rest operator (...) in function parameters is used to collect the rest of the arguments into an array. It allows a function to accept a variable number of arguments.
Loading...
Related Quiz
- Unlike callbacks, Promises support _______ chaining, which helps in writing cleaner code.
- What is a static method in an ES6 class?
- The _________ dead zone refers to the time during which a let or const variable cannot be accessed.
- Q2: Given a scenario where a subclass needs to modify a method inherited from a parent class, how would you implement this in ES6?
- Consider a scenario where you have to implement a function to compute factorial numbers. How would ES6 features enhance the implementation of this recursive function?