### unionReturnsevery element that existsinanyof the two arrays once.
Create a `Set` withallvaluesof `a` and `b` andconvertto an array.
```js
const union= (a, b) => Array.from(newSet([...a, ...b]));
```
```js
union([1, 2, 3], [4, 3, 2]); // [1,2,3,4]
```