mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 03:26:22 +00:00
595 B
595 B
date | id | title |
---|---|---|
20201113 | 55435d35-26e1-460b-a683-ef346c9972a8 | 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]]