https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/entries
객체가 가지고 있는 모든 속성을 값을 배열로 반환한다.
const obj = {
a: 'hi',
b: 100
};
Object.entries(obj);
(2) [Array(2), Array(2)]
0: (2) ["a", "hi"]
1: (2) ["b", 100]
for (const [key, value] of Object.entries(obj)) {
console.log(`${key} : ${value}`);
}
a : hi
b : 100