I have searched for this for quite some time but could not get a way to have a where clause with or condition. For example if I have a collection Cars and I try to
Cars
Cars.filter(function(car) { return car.get("model") === 1998 || car.get("color") === "Black" || car.get("make") === "Honda"; });