Fix typos

This commit is contained in:
Chalarangelo
2022-09-04 13:49:46 +03:00
parent b95929d4e8
commit 126134a489
3 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@ firstSeen: 2022-06-16T05:00:00-04:00
Converts an object to a `Map`.
- Use `Object.entries` to convert the object to an array of key-value pairs.
- Use `Object.entries()` to convert the object to an array of key-value pairs.
- Use the `Map` constructor to convert the array to a `Map`.
```js