I am most likely overlooking something something pretty basic here, but I have a really hard time figuring out why I get the following behaviour, when looking for a specific array in another array:
myArray.push(["Name", 1, 2]);
myArray.indexOf(["Name", 1, 2]);
Returns -1.. Why can't I find the array that I just pushed?