Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
sort(({price:a},{price:b}) => b-a).slice(0,x) solution in Creative category for Bigger Price by danielsan
var biggerPrice = (x, L) => L.sort(({price:a},{price:b}) => b-a).slice(0,x)
April 24, 2020