Is there a function in lodash (or other javascript library) that can binary search in an array of objects based on on object?

I have an array of objects. I have a very long but sorted list, so I want to do a binary search. Is there any premade function to do so?

let myArray=[{a: 1, b: 3, c: "das"}, {a: 2, b:76, c: "gdfdas"}, {a: 3, b: 324, c: "jghjgs"}, {a: 4, b:326, c: "djh"}, {a: 5, b: 876, c: "htrgs"}];

this is my list. I want to find the element that is {a: 3, b: 324}.

Checked this: binary search in array of object javascript, but it says binary search cant be used for search based on multiple properties of an object.

I have tried some lodash functions, but they did not help, since I could not make them work with an array of objects