Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for [old] Bigger Price by Moff
function biggerPrice(limit, data) {
return data.slice().sort((a, b) => b.price - a.price).slice(0, limit);
}
Feb. 1, 2018