Array.prototype.at
The syntax is at(index). Interestingly, it also supports negative indices, which count from the end of the array.
at(index)
arr = [1, 2, 4] arr.at(-1) // returns 4