object with key array code example
Example 1: javascript object entries
// Object Entries returns object as Array of [key,value] Array
const object1 = {
a: 'somestring',
b: 42
}
Object.entries(object1) // Array(2) [["a", "something"], ["b", 42]]
.forEach(([key, value]) => console.log(`${key}: ${value}`))
// "a: somestring"
// "b: 42"
Example 2: get all keys of object in javascript
myObject = {
"key": "value",
"key2":"value2"
}
Object.keys(myObject);
//console.log(Object.keys(myObject)) = ["key", "key2"]