I\'d like to check if two arrays are equal. I mean: same size, same index, same values. How can I do that?
Using !== as suggested by a user, I expect th
!==
!=== will not work because it's a syntax error. The correct way is !== (not three "equal to" symbols)
!===