《学习笔记8》——toUpperCase、toLowerCase、toLocaleUpperCase、toLocaleLowerCase的使用
1.toUpperCase()方法toUpperCase() 方法用于把字符串转换为大写。let str1 = 'abc';console.log(str1.toUpperCase());上述代码的输出如下:ABC注意,该方法改变了原始字符串。2.toLowerCase()方法toLowerCase() 方法用于把字符串转换为小写。因为用法和toUpperCase() 方法一致,所以这里不作过多的解释。3.toLocaleUpperCase()方法toLocale