Can the spread operator be used to combine two arrays into one in ES6?
- Yes
- No
- Only if the arrays are of the same length
- Only if the arrays are of different types
Yes, the spread operator can be used to combine two arrays into one by spreading the elements of both arrays into a new array. It's a concise way of merging arrays without modifying the original arrays.
Loading...
Related Quiz
- One primary difference between WeakMap and Map is that WeakMap keys are ________ to garbage collection.
- What is the main advantage of using Promises over Callbacks in asynchronous JavaScript?
- In a Promise-based AJAX call, ________ is used to asynchronously await the response without blocking the execution.
- If a class extends another class, the constructor of the child class must call _______ to access the parent's properties.
- To define a function as a method in an object literal, ES6 syntax does not require the ________ keyword.