其他分享
首页 > 其他分享> > 《学习笔记8》——toUpperCase、toLowerCase、toLocaleUpperCase、toLocaleLowerCase的使用

《学习笔记8》——toUpperCase、toLowerCase、toLocaleUpperCase、toLocaleLowerCase的使用

作者:互联网

1.toUpperCase()方法

toUpperCase() 方法用于把字符串转换为大写

let str1 = 'abc';
console.log(str1.toUpperCase());

上述代码的输出如下:

ABC

注意,该方法改变了原始字符串


2.toLowerCase()方法

toLowerCase() 方法用于把字符串转换为小写。因为用法和toUpperCase() 方法一致,所以这里不作过多的解释。


3.toLocaleUpperCase()方法

toLocaleUpperCase()方法用于根据本地主机的语言环境把字符串转换为大写。本地是根据浏览器的语言设置来判断的。

let str1 = 'abc';
let str2 = str1.toLocaleUpperCase();
console.log(str2);

上述代码的输出如下:

ABC

该方法的输出结果和toUpperCase()方法的输出结果一致,但不一样的是,toLocaleUpperCase()方法没有改变原始字符串


4.toLocaleLowerCase()方法

toLocaleLowerCase() 方法根据本地主机的语言环境把字符串转换为小写。用法和toUpperCase()方法一致。

标签:toLocaleUpperCase,toLowerCase,str1,toUpperCase,let,字符串,方法
来源: https://blog.csdn.net/weixin_53801131/article/details/116176695