What is the primary purpose of the spread operator in ES6?
- Spreading elements of an array or object
- Merging two arrays
- Concatenating strings
- Creating a new variable
The spread operator (...) is primarily used to spread elements of an array or object, allowing them to be expanded in places where multiple elements or variables are expected. This can be useful for passing array elements as individual arguments to a function or merging arrays.
Loading...
Related Quiz
- A class expression in ES6 can be named or unnamed, with the name being accessible inside the class's ________.
- To rename a named export during import, use the syntax import { originalName as ______ } from 'module-name';.
- The "sideEffects" property in package.json helps tree shaking by indicating if a module may contain _______.
- The _________ dead zone refers to the time during which a let or const variable cannot be accessed.
- In ES6, how is a method defined inside a class?