toLowerCase 方法
返回一个字符串,该字符串中的字母被转换为小写字母。strVariable.toLowerCase( )
"String Literal".toLowerCase( )
------------------------------------
toUpperCase 方法
返回一个字符串,该字符串中的所有字母都被转化为大写字母。strVariable.toUpperCase( )
"String Literal".toUpperCase( )