Answers for "how to get all the properties of an array of object in javascript"

2

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
4

get all entries in object as array hjs

const object1 = {
  a: 'somestring',
  b: 42
};

for (let [key, value] of Object.entries(object1)) {
  console.log(`${key}: ${value}`);
}

// expected output:
// "a: somestring"
// "b: 42"
// order is not guaranteed
Posted by: Guest on April-23-2020

Code answers related to "how to get all the properties of an array of object in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language