I spent the last hour and a half trying to find a bug in my code, when I finally realized that this JavaScript code:
[[1, 2], [3, 4]].indexOf([1, 2]);
returns -1
, even though something such as [1, 2, 3].indexOf(1);
correctly returns 0...
Why does this happen, and how can I find the correct index of the subarray?
The
indexOf
takes only primitive arguments and you cannot match:Which obviously gives
false
.