wiki/content/20201113102048-object_entries.md

30 lines
580 B
Markdown
Raw Normal View History

2024-05-06 20:40:05 +00:00
---
id: 55435d35-26e1-460b-a683-ef346c9972a8
title: Object.entries
---
# Description
Returns [object](20200826201605-objects) properties as key / value
pairs. Can be used with [maps](20201012093745-javascript_maps) as well.
It does the opposite of
[Object.fromEntries](20201116095124-object_fromentries).
# Syntax
``` javascript
console.log(Object.entries({ one: 1, two: 2 })); // [['one', 1], ['two', 2]]
```
## Maps
``` javascript
let map = new Map(
Object.entries({
one: 1,
two: 2,
})
);
console.log(JSON.stringify([...map])); // [["one", 1], ["two", 2]]
```