Identical arrays are not equal?!
> ['a', 'b'] !== ['a', 'b']
true
> ['a', 'b'] != ['a', 'b']
true
> ['a', 'b'] == ['a', 'b']
false
Sureā¦ Those are clearly not the same ;)
> ['a', 'b'] !== ['a', 'b']
true
> ['a', 'b'] != ['a', 'b']
true
> ['a', 'b'] == ['a', 'b']
false
Sureā¦ Those are clearly not the same ;)