function fn(a, b, c) { return a.filter(function(a) { return a.price >= b && a.price <= c; }).sort(function(a, b) { return b.price - a.price; }); }