Fix typos

This commit is contained in:
Isabelle Viktoria Maciohsek
2021-01-08 00:23:44 +02:00
parent 6889e55250
commit 9c7f2c1a8c
8 changed files with 8 additions and 8 deletions

View File

@ -5,7 +5,7 @@ tags: array,beginner
Checks if all elements in an array are unique.
- Create a new `Set` from the mapped values to keep only unique occurences.
- Create a new `Set` from the mapped values to keep only unique occurrences.
- Use `Array.prototype.length` and `Set.prototype.size` to compare the length of the unique values to the original array.
```js