This one has always served me well...
var myProperty = "FOO"
var expenseSelect = expenseArray.filter(function(obj){
return obj.property == myProperty
});
But now I have a situation where the obj.property is an array of properties ["FOO", "BAR", "WEE"] inside the expenseArray.
Is there a smart way to do this? Or do I have to do the whole loop inside loop thing?