A function that takes another function as an argument is called a __________ function.
- Callback
- Higher-order
- Nested
- Recursive
In JavaScript, a higher-order function is a function that takes one or more functions as arguments or returns a function. It enables the use of functions as data, promoting a more functional and modular approach.
Loading...
Related Quiz
- The __________ is responsible for executing the code, collecting and processing events, and executing queued sub-tasks.
- How does the reduce method's accumulator work in each iteration of the array?
- In the context of Promises and AJAX, how does async/await improve error handling compared to .then() and .catch()?
- A rejected promise will skip all subsequent .then() methods until a _________ method is found.
- Q2: Given a scenario where a subclass needs to modify a method inherited from a parent class, how would you implement this in ES6?