The _______ operator can be used to unpack the values from an iterable into individual elements.
- spread
- merge
- combine
- join
The spread operator (...) in JavaScript is used to unpack elements from an iterable, such as an array, and spread them into individual elements or combine them with other elements.
Loading...
Related Quiz
- How would you use mixins in ES6 to enhance classes in a library, without modifying the original source code?
- Tree shaking is most effective when modules use _______ exports rather than wildcard exports.
- In ES6, how can the spread operator (...) be used in a recursive function?
- How does the Fetch API handle HTTP error statuses (like 404 or 500) in Promises?
- In a for...of loop, the _________ method of an iterable object is called to retrieve values.