Answers for "javascript get all value of array object by key"

15

get all keys of object in javascript

myObject = {
	"key": "value",
    "key2":"value2"
}
Object.keys(myObject);
//console.log(Object.keys(myObject))   = ["key", "key2"]
Posted by: Guest on July-23-2020
10

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 "javascript get all value of array object by key"

Code answers related to "Javascript"

Browse Popular Code Answers by Language