[][] 抽象方法

String [][](
  1. int index
)

在给定 index 位置的字符(作为单个代码单元 String)。

返回的字符串恰好表示一个 UTF-16 代码单元,这可能是代理对的一半。代理对的一个成员是无效的 UTF-16 字符串

var clef = '\u{1D11E}';
// These represent invalid UTF-16 strings.
clef[0].codeUnits;      // [0xD834]
clef[1].codeUnits;      // [0xDD1E]

此方法与 String.fromCharCode(this.codeUnitAt(index)) 等价。

实现

String operator [](int index);