JavaScript 通过 toUpperCase()方法和 toLowerCase()方法实现字符串的大小写转换,其中 toUpperCase 用于将小写字符转换为大写字符,toLowerCase 用于将大写字符转换为小写字符。具体示例如下:
1.小写转大写,输出 WWW.02405.COM
let str = "www.02405.com"; str = str.toUpperCase(); console.log(str);
2.大写转小写,输出 www.02405.com
let str = "WWW.02405.COM"; str = str.toLowerCase(); console.log(str);
声明:本文为原创文章,版权归主机之家测评所有,欢迎分享本文,转载请保留出处!