Sometimes in the tests we would like to check are they any common elements for two arrays.
TS2013 have a nice function called Contains() using which devs can easly check if the searched element is in the array or not.
And what about the function which returns an array of common elements of two even more than two arrays?
Instaed of looping one array and issuing Contains() command it would be good to have a kind of logical AND using which we can have a list of common elements?
Would the operator overloading be the right things to do?