Which array method would you use to transform an array into a single value?

  • reduce
  • filter
  • forEach
  • map
The reduce method is used to transform an array into a single value by applying a function that accumulates the values of the array. It takes a callback function and an initial value, and iterates over the array, updating the accumulator with the result of the callback function. This is commonly used for summing up values or performing other aggregations.
Add your answer
Loading...

Leave a comment

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