我有一组对象,我想知道搜索它的最佳方法。鉴于以下示例,我如何搜索name = "Joe"
和age < 30
?有什么 jQuery 可以帮助的,或者我必须自己暴力搜索吗?
var names = new Array();
var object = { name : "Joe", age:20, email: "joe@hotmail.com"};
names.push(object);
object = { name : "Mike", age:50, email: "mike@hotmail.com"};
names.push(object);
object = { name : "Joe", age:45, email: "mike@hotmail.com"};
names.push(object);