profileRyan KesPGP keyI build stuffEmailGithubTwitterLast.fmMastodonMatrix

Object.entries

Description

Returns object properties as key / value pairs. Can be used with maps as well. It does the opposite of Object.fromEntries.

Syntax

console.log(Object.entries({ one: 1, two: 2 })) // [['one', 1], ['two', 2]]

Maps

let map = new Map(
  Object.entries({
    one: 1,
    two: 2,
  })
)
console.log(JSON.stringify([...map])) // [["one", 1], ["two", 2]]

Related