Skip to content

Instantly share code, notes, and snippets.

@ceau
Created September 26, 2017 08:15
Show Gist options
  • Save ceau/1c179a09d7326b6c021d7509d664c97e to your computer and use it in GitHub Desktop.
Save ceau/1c179a09d7326b6c021d7509d664c97e to your computer and use it in GitHub Desktop.
js array intersection
var intersection = function(){
return Array.from(arguments).reduce(function(previous, current){
return previous.filter(function(element){
return current.indexOf(element) > -1;
});
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment