Answers for "js grab a property from all objects inside an array"

4

get array of all property in object array

objArray = [ { foo: 1, bar: 2}, { foo: 3, bar: 4}, { foo: 5, bar: 6} ];
let result = objArray.map(a => a.foo); //[1,3,5]
//OR
let result = objArray.map(({ foo }) => foo) //[1,3,5]
Posted by: Guest on April-20-2021
3

find object in array javascript with property

let obj = objArray.find(obj => obj.id == 3);
Posted by: Guest on January-02-2021
2

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
});
Posted by: Guest on May-25-2020
0

search an array of objects with specific object property value

var result = jsObjects.find(obj => {
  return obj.b === 6
})
Posted by: Guest on May-25-2020

Code answers related to "js grab a property from all objects inside an array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language