Skip to content

Instantly share code, notes, and snippets.

@scionwest
Last active March 4, 2018 19:57
Show Gist options
  • Save scionwest/88c36c96bfd5393124b9090e4030d154 to your computer and use it in GitHub Desktop.
Save scionwest/88c36c96bfd5393124b9090e4030d154 to your computer and use it in GitHub Desktop.
var difference = array1.filter(function(item, index) {
return !array2.includes(item);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment