Skip to content
Advertisement

Find most bought from array vue.js

I am trying to find which of the posts has the most bought… I’ve been trying for some time now, and this is my latest draft. I would really like to know if there is a smart way to do this through Vue js. Most of my struggles come from navigating the array.

My first thought was to merge the different numbers (bought) together and then determine the biggest one, whereafter trying to locate the number, but with no luck.

Is there anyone who could help me?

JavaScript

Advertisement

Answer

You can create a computed property that returns the most bought object from the lists. To get the most bought object use js Array.prototype.reduce() method.

JavaScript

Here is a link of vue playground

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement