JavaScript Algorithm: Sorted Union
We write a function that will return an array of unique values taken from two or more other arrays.

We write a function called uniteUnique
that will accept one required argument which is an array (arr
). There will be at least one or more additional array arguments.