find min object in array of objects code example

Example 1: javascript array find highest value of array of objects by key

Math.max.apply(Math, array.map(function(o) { return o.y; }))

Example 2: Obtain smallest value from array of objects in Javascript

myArray.sort(function (a, b) {
    return a.Cost - b.Cost
})

var min = myArray[0],
    max = myArray[myArray.length - 1]

Example 3: array with objects read element with the lowest value

myArray.reduce(function(prev, curr) {
    return prev.Cost < curr.Cost ? prev : curr;
});