The Array method __________ is an example of a higher-order function that takes a function as its argument.
- Map
- Filter
- Reduce
- Concat
The reduce method in JavaScript arrays is a higher-order function that takes a callback function to accumulate the elements of an array into a single result. It is commonly used for tasks like summing or product accumulation.
Loading...
Related Quiz
- When iterating over a Map object with a for...of loop, each iteration returns an array where the first element is the _______ and the second is the value.
- To export multiple features from a single module, use export { feature1, feature2 as _______ };.
- In ES6, which scenario would necessitate using let over const?
- The __________ file in a module directory helps in defining the entry point for the module in ES6.
- Each call to the next() method on a generator returns an object with two properties: value and _________.