Update formatting

This commit is contained in:
Isabelle Viktoria Maciohsek
2022-01-30 12:02:34 +02:00
parent e9019d4c20
commit 6f11554999
13 changed files with 15 additions and 15 deletions

View File

@ -7,7 +7,7 @@ lastUpdated: 2020-10-22T20:24:44+03:00
Finds all unique values in an array.
- Create a `new Set()` from the given array to discard duplicated values.
- Create a `Set` from the given array to discard duplicated values.
- Use the spread operator (`...`) to convert it back to an array.
```js