Last active
March 4, 2018 19:57
-
-
Save scionwest/88c36c96bfd5393124b9090e4030d154 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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