此方法返回转换为小写的调用字符串值。
string.toLowerCase( )
返回转换为小写的调用字符串值。
var str = "Apples are round, and Apples are Juicy."; console.log(str.toLowerCase( ))
apples are round, and apples are juicy.