We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 531864a commit 15d638eCopy full SHA for 15d638e
1-js/05-data-types/09-keys-values-entries/article.md
@@ -74,7 +74,7 @@ Usually that's convenient. But if we want symbolic keys too, then there's a sepa
74
75
Objects lack many methods that exist for arrays, e.g. `map`, `filter` and others.
76
77
-If we'd like to apply them, then we can use `Object.entries` followed `Object.fromEntries`:
+If we'd like to apply them, then we can use `Object.entries` followed by `Object.fromEntries`:
78
79
1. Use `Object.entries(obj)` to get an array of key/value pairs from `obj`.
80
2. Use array methods on that array, e.g. `map`.
0 commit comments