Imagine processing a shopping cart array to calculate the total price. Which method would efficiently achieve this?

  • map
  • reduce
  • filter
  • forEach
The most efficient method for calculating the total price in a shopping cart array is reduce. The reduce method iterates over each element of the array and accumulates a result. In this case, it can sum up the prices to provide the total cost.
Add your answer
Loading...

Leave a comment

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