Lingkarkan melalui nilai kunci pasangan JS

for (const [key, value] of Object.entries(object1)) {
  console.log(`${key}: ${value}`);
}
Average Ant