const obj = { a: 1, b: 2 }; Object.keys(obj).forEach(key => { console.log("key: ", key); console.log("Value: ", obj[key]); } );