const object = { a: 1, b: 2, c: 3 }; // method 1 Object.entries(object).forEach(([key, value]) => { console.log(key, value) }); //method 2 for (const key in object) { console.log(key, object[key]) } // same output // a 1 // b 2 // c 3