Answers for "find key with max value javascript"

1

find in highest value key from an object javascript

var obj = {a: 1, b: 2, undefined: 1};

Object.keys(obj).reduce((a, b) => obj[a] > obj[b] ? a : b);
Posted by: Guest on September-30-2020
13

find max of array of objects key

Math.max.apply(Math, array.map(function(o) { return o.y; }))
Posted by: Guest on March-05-2020

Code answers related to "find key with max value javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language