I would like to find the key of a minimum value with underscore. For example:
var my_hash = {'0-0' : {value: 23, info: 'some info'},
'0-23' : {value: 8, info: 'some other info'},
'0-54' : {value: 54, info: 'some other info'},
'0-44' : {value: 34, info: 'some other info'}
}
find_min_key(my_hash); => '0-23'
How can I do that with underscorejs ?
I've tried:
_.min(my_hash, function(r){
return r.value;
});
# I have an object with the row, but not it's key
# => Object {value: 8, info: "some other info"}
I also try to sort it (and then getting the first element):
_.sortBy(my_hash, function(r){
return r.value;
})
But it returns an array with numerical indexes, so my hash keys are lost.
With Underscore or Lodash < 4:
_.min(_.keys(my_hash), function(k) { return my_hash[k].value; }); //=> 0-23
With Lodash >= 4:
_.minBy(_.keys(my_hash), function(k) { return my_hash[k].value; }); //=> 0-23
Without a library:
Object.entries(my_hash).sort((a, b) => a[1].value - b[1].value)[0][0]
or
Object.keys(my_hash).sort((a, b) => my_hash[a].value - my_hash[b].value)[0]
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With