Which method would you choose to execute a side effect for each array element without modifying the array?

  • forEach
  • map
  • filter
  • reduce
The forEach method is designed for executing a provided function once for each array element without modifying the array itself. It is commonly used when you need to perform side effects, such as logging or updating external variables, for each element.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *