ES6 toLocaleLowerCase()
此方法用于在尊重当前区域设置的同时将字符串中的字符转换为小写。对于大多数语言,它返回与toLowerCase相同的输出。
语法
string.toLocaleLowerCase( )
返回值
返回当前语言环境的小写字符串。
例
var str = "Apples are round, and Apples are Juicy.";
console.log(str.toLocaleLowerCase( ));
输出
apples are round, and apples are juicy.
此方法返回转换为小写的调用字符串值。语法string.toLowerCase( )返回值返回转换为小写的调用字符串值。例var str = "Apples are round, and Apples ar ...