I've got an Array of arrays. There can be two or more subarrays:
array = [
["66892885", "66891801", "66924833", "66892255"],
["65167829", "65167828", "66924833"],
["66924833", "66891801"]
]
I need only the values found across each subarray. So in this case "66924833" would be the only match. For a value to show up in the result, each subarray has to contain it.
How can I do this?
[[a, b], [b, c], [a, c]]would return[]?