The B
0
Q:

search an array of objects with specific object property value

// MDN Ref:
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/find

var result = jsObjects.find(obj => {
  return obj.b === 6
});
1
var result = jsObjects.find(obj => {
  return obj.b === 6
})
2

New to Communities?

Join the community