Skip to content

Instantly share code, notes, and snippets.

@chepetime
Created August 26, 2019 00:31
Show Gist options
  • Save chepetime/1c6e2c380bf99d59fad806998c94266c to your computer and use it in GitHub Desktop.
Save chepetime/1c6e2c380bf99d59fad806998c94266c to your computer and use it in GitHub Desktop.
const getUniqueElementsInTwoArrays = (x, y) => {
return String([...x, ...y].filter(el => !(x.includes(el) && y.includes(el))));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment