索引运算符 (`[]`) 方法

Number operator [](
  1. int index
)
override

列表中标有指定 index 的对象。

index 必须是该列表的有效索引,这意味着 index 必须是非负数且小于 长度

实现

Number operator [](int index) {
  if (JS("bool", "# >>> 0 !== # || # >= #", index, index, index, length))
    throw new IndexError.withLength(index, length, indexable: this);
  return this.getItem(index);
}