Files
30-seconds-of-code/snippets/difference.md
Isabelle Viktoria Maciohsek 5e8e6f51a3 Update snippet descriptions
2020-10-19 18:51:03 +03:00

21 lines
463 B
Markdown

---
title: difference
tags: array,beginner
---
Calculates the difference between two arrays, without filtering duplicate values.
- Create a `Set` from `b` to get the unique values in `b`.
- Use `Array.prototype.filter()` on `a` to only keep values not contained in `b`, using `Set.prototype.has()`.
```js
const difference = (a, b) => {
const s = new Set(b);
return a.filter(x => !s.has(x));
};
```
```js
difference([1, 2, 3, 3], [1, 2, 4]); // [3, 3]
```