Files
30-seconds-of-code/snippets/subSet.md
Isabelle Viktoria Maciohsek 0af9ec8bb4 Add subSet
2020-10-11 11:53:08 +03:00

22 lines
576 B
Markdown

---
title: subSet
tags: array,intermediate
---
Checks if the first iterable is a subset of the second one.
- Use the `new 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 first iterable is contained in the second one.
```js
const subSet = (a, b) => {
const sA = new Set(a), sB = new Set(b);
return [...sA].every(v => sB.has(v));
};
```
```js
subSet(new Set([1, 2]), new Set([1, 2, 3, 4])); // true
subSet(new Set([1, 5]), new Set([1, 2, 3, 4])); // false
```