To convert a Set into an array, use the spread operator like this: [..._________].
- Set
- Map
- Iterable
- Collection
To convert a Set into an array, use the spread operator like this: [...Set]. Sets in ES6 are iterable, and using the spread operator allows you to convert the Set into an array easily.
Loading...
Related Quiz
- In ES6 Modules, imports and exports must be ________, unlike in CommonJS where they can be dynamic.
- In what scenarios is it not recommended to use arrow functions in JavaScript?
- Which of the following is not a state of a Promise?
- Can await be used inside a regular (non-async) function?
- What is the correct syntax to create an instance of a class in ES6?