const point = { x: 10, y: 20, }; for (const [axis, value] of Object.entries(point)) { console.log(`${axis} => ${value}`); } /** prints: * x => 10 * y => 20 */