key/value object nodejs code example
Example 1: foreach object js
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
Example 2: get keys of dictionary js
// Get keys of a dictionary
let dict = { a:1 , b:2 , c:3 }
console.log( Object.keys(dict) ) // expected output : ['a', 'b', 'c']