Home > Article > Web Front-end > How to Efficiently Search and Filter Arrays of Objects in JavaScript?
When dealing with arrays of objects, the need arises to search and filter them for specific criteria. One such example is finding all objects where the "name" property equals "Joe" and the "age" property is less than 30.
Utilizing JavaScript's modern functionality, we can employ the Array.prototype.filter() method to achieve this:
const found_names = names.filter(v => v.name === "Joe" && v.age < 30);
This approach iterates over the names array and returns a new array containing only objects that satisfy the specified conditions.
If you prefer jQuery, an alternative method exists:
var found_names = $.grep(names, function(v) { return v.name === "Joe" && v.age < 30; });
jQuery's $.grep() function filters an array based on a provided callback. The callback here returns true for objects meeting the desired criteria and false otherwise.
The above is the detailed content of How to Efficiently Search and Filter Arrays of Objects in JavaScript?. For more information, please follow other related articles on the PHP Chinese website!