[{a: "test1", b: 200},
{a: "test2", b: 50},
{a: "test3", b: 700}
]
let items = [
{a: "test1", b: 200},
{a: "test2", b: 50},
{a: "test3", b: 700}
];
// если нужен элемент массива
let max = items.reduce((acc, curr) => acc.b > curr.b ? acc : curr);
// если нужен индекс элемента массива
let maxIndex = items.reduce((acc, curr, i) => items[acc].b > curr.b ? acc : i, 0);