Posts by mozurok • 1 point
1 post
-
-1
votes2
answers43
viewsA: Select a specific JSON array with Javascript
I think using the Array.prototype.filter() Voce will get the result you need. Will return you a new array of information that matches your filter. meuArray.filter((item) => { item.FieldName ===…