The _________ method executes a provided function once for each array element.
- forEach
- map
- filter
- reduce
The correct answer is forEach. This method iterates over each element in an array and executes a provided function once for each element. It is commonly used for tasks like logging, updating values, or performing side effects.
Loading...
Related Quiz
- How does the static method Promise.all() work with multiple promises?
- Using yield* within a generator function delegates to another _________ or iterable object.
- Can default parameters be expressions or function calls?
- What is the base case in a recursive function?
- In functional programming, what is the recommended way to handle functions with side effects?