const object1 = { a: 'somestring', b: 42 };
for (const [key, value] of Object.entries(object1)) {
console.log(`${key}: ${value}`);
} // expected output: "a: somestring" "b: 42" order is not guaranteed
// Object.entries() in javascript
const credits = { producer: 'John', director: 'Jane', assistant: 'Peter' };
const arr = Object.entries(credits);
console.log(arr);
/** Output:
[ [ 'producer', 'John' ],
[ 'director', 'Jane' ],
[ 'assistant', 'Peter' ]
]
**/
// List all entries
let text = "";
for (const x of fruits.entries()) {
text += x;
}