sodb can order your results ascendingly (protip use .reverse() to get descending).
heightOrder = database.orderBy('height', {eyes: 2});
heightOrder[0].name // jorge
heightOrder.reverse()[0].name // timIf you are using caching your sorts are cached too.