Skip to content

Instantly share code, notes, and snippets.

@toxi-kb
Last active March 5, 2020 06:49
Show Gist options
  • Select an option

  • Save toxi-kb/38ca58dd088772d4d73c01ad9e529b48 to your computer and use it in GitHub Desktop.

Select an option

Save toxi-kb/38ca58dd088772d4d73c01ad9e529b48 to your computer and use it in GitHub Desktop.
const array0 = [1, 2];
const array1 = [array0, [3, 4]];
const array2 = [array0, [3, 4]];
console.log(array1.filter(x => array2.includes(x))); // [[1, 2]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment