2024年06月24日 建站教程
es6语法中如何将字符串转为大小写,下面web建站小编给大家详细介绍一下!
1、利用toUpperCase()函数将字符串转换为大写
str.toUpperCase()
2、利用toLocaleUpperCase()函数将字符串转换为大写
str.toLocaleUpperCase()
3、实现首字母大写
str.slice(0,1).toUpperCase() + str.slice(1).toLowerCase();
本文链接:http://so.lmcjl.com/news/7187/