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:30+03:00
Checks if the first iterable is a superset of the second one, excluding duplicate values.
- Use the `new Set()` constructor to create a new `Set` object from each iterable.
- Use the `Set` constructor to create a new `Set` object from each iterable.
- Use `Array.prototype.every()` and `Set.prototype.has()` to check that each value in the second iterable is contained in the first one.
```js