Object.entries(객체)

const family = { father : "Jonathan Kent", mother : "Martha Kent", son : "Clark Kent", } Object.entries(family); [["father", "Jonathan Kent"], ["mother", "Martha Kent"], ["son", "Clark Kent"]]