js 大小写转换函数
JS:
toUperCase(); 例子:"true".toUperCase(); 结果 TRUE
toLowerCase(); 例子:"TRUE".toLowerCase()结果:"true"
toString();js的转string的函数