Relative indexing method

Specification
Proposal repo

Built-ins signatures

class Array {
  at(index: int): any;
}

class String {
  at(index: int): string;
}

class %TypedArray% {
  at(index: int): number;
}

Entry points

core-js/proposals/relative-indexing-method