Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Single line solution in Clear category for [old] Bigger Price by MaxGraey
const biggerPrice = (limit, data) => data.sort((a, b) => b.price - a.price).slice(0, limit)
May 11, 2019