把字符串转换为小写。
stringObject.toLowerCase();
一个新的字符串,在其中 stringObject 的所有大写字符全部被转换为了小写字符。
var Str = "Hello KILLHAPPY"; console.log( Str.toLowerCase() );
>>> hello killhappy