toLowerCase()
toLowerCase() 方法将调用该方法的字符串转为小写的形式进行返回
str.toLowerCase()
console.log('zh-CN'.toLowerCase()); // zh-cn
toUpperCase()
toUpperCase() 方法将调用该方法的字符串转为大写的形式进行返回
str.toUpperCase()
console.log('zh-CN'.toUpperCase()); // ZH-CN
toLowerCase() 方法将调用该方法的字符串转为小写的形式进行返回
str.toLowerCase()
console.log('zh-CN'.toLowerCase()); // zh-cn
toUpperCase() 方法将调用该方法的字符串转为大写的形式进行返回
str.toUpperCase()
console.log('zh-CN'.toUpperCase()); // ZH-CN