In ES6, which method is commonly used as a higher-order function for arrays?
- map()
- concat()
- reduce()
- slice()
The map() method in ES6 is commonly used as a higher-order function for arrays, allowing the transformation of each element with a provided function.
Loading...
Related Quiz
- To optimize tree shaking, developers should avoid _______ side effects in their module code.
- Pure functions should not modify any _________ state.
- Can an arrow function have its own this context?
- To insert a variable into a template literal, use the ${} __________.
- How do you import a specific function from a module in ES6?