In destructuring assignment, _________ can be used to gather the rest of the elements/properties into a new array or object.
- Spread operator
- Rest operator
- Concatenation operator
- Merge operator
In destructuring assignment, the correct option is the "Rest operator." The rest operator allows you to gather the remaining elements or properties into a new array or object, making it a powerful tool for working with structured data. It is denoted by three dots (...).
Loading...
Related Quiz
- Tree shaking can fail to eliminate unused code if modules are dynamically _______ at runtime.
- To create a pipeline of operations, functions can be composed using higher-order functions, known as __________.
- In what scenarios is it more beneficial to use tagged template literals over regular template literals?
- The __________ is a JavaScript runtime feature that constantly checks if the call stack is empty to run queued callbacks.
- Can destructuring assignment be used with arrays, and if so, how does it differ from object destructuring?