At which index is the first element of an ordinary JavaScript array stored?
Explanation
Array element positions are zero-based, so the first element uses index 0. Choosing index 1 applies one-based counting rather than JavaScript's indexed-element convention.