If I understand this correctly it is to add negative index support to arrays. How will findIndex work when this is introduced? It currently uses -1 as a return value when no element satisfies the testing function.
[1, 2, 3, 4].at(0) === 1
[1, 2, 3, 4].at(1) === 2
[1, 2, 3, 4].at(-1) === 4
findIndex’s behavior is unchanged.