let ary1 = ["aaa", "bbb", "ccc"];
let ary2 = ["111", "222", "bbb", "0"];
// bbb matches
How can I find out if there is at least one overlapping element of my 2 arrays?
Normally I would do a cascaded for loop.
But I am sure there is some Lambda-style code I do not know.
1