If you want one Item:
array.find(object => object.a === 3) // returns { a: 3, b: 6 }
If you want all Items:
array.filter(object => object.a === 3) // returns [{ a: 3, b: 6 }, ... ]
This is ES2016. The build in functions are optimised and relative fast.