A variable a refers to an array. Variable b is assigned a, with no new array created. What is a === b?
Explanation
Both variables refer to the same array object, so strict equality produces true. Equal-looking but separately created arrays would fail this test because object strict equality depends on shared identity.