Last active
March 5, 2020 06:49
-
-
Save toxi-kb/38ca58dd088772d4d73c01ad9e529b48 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
| 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