sort
Sort a list of objects by a numerical property
131 bytes
Usage
Given an array of objects, return a new array sorted by the numerical property specified in the get function. A third, and optional, argument allows you to sort in descending order instead of the default ascending order.
This function only supports numerical sorting. For alphabetic sorting, see the alphabetical function.