Skip to content

Instantly share code, notes, and snippets.

@lupomontero
Last active September 18, 2017 03:07
Show Gist options
  • Save lupomontero/adfe31837e22eb5d9a9ac159770c26db to your computer and use it in GitHub Desktop.
Save lupomontero/adfe31837e22eb5d9a9ac159770c26db to your computer and use it in GitHub Desktop.
const intersection = (a, b) => a.filter(value => b.indexOf(value) > -1).sort();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment