toLowerCase 抽象方法

String toLowerCase()

将此字符串中的所有字符转换为小写。

如果字符串已经全部是小写,则此方法返回 this

'ALPHABET'.toLowerCase(); // 'alphabet'
'abc'.toLowerCase(); // 'abc'

此函数使用与语言无关的 Unicode 映射,因此仅在某些语言中工作。

实现

// TODO(floitsch): document better. (See EcmaScript for description).
String toLowerCase();