toLowerCase 抽象方法

String toLowerCase()

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

如果字符串已经是全部小写,此方法将返回 此对象

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

此函数使用与语言无关的Unicode映射,因此仅在一些语言中有效。

实现

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