In object destructuring, the rest operator can be used to gather the remaining properties into a new '__________'.
- Object
- Array
- Variable
- Function
In object destructuring, the rest operator (...) is used to collect the remaining properties of an object into a new array. This allows you to extract specific properties while capturing the rest in a convenient variable, often referred to as an array or an object.
Loading...
Related Quiz
- How do you embed expressions within a template literal?
- How can you create a custom iterable object using ES6 classes?
- Mixins in ES6 are commonly used for adding _________ to classes without using inheritance.
- A common use case for currying is to create more _________ versions of existing functions.
- Can dynamic imports be conditional? If so, what is a real-world use case?