I found another question on here that told how to get the matching items in 2 arrays like this:
matches = array1 & array2 However I have an array of arrays. like:
[[1,2,3,4],[2,3,4,5],[1,3,4,5]] In this case I want to return 3 and 4 because they are in all three arrays.
How do I go about doing that?
Thank you!