Answers for "js array of objects find in all properties"

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

Code answers related to "js array of objects find in all properties"

Code answers related to "Javascript"

Browse Popular Code Answers by Language