首页 > 其他分享 >有些小用的小方法(持续更新,欢迎补充)

有些小用的小方法(持续更新,欢迎补充)

时间:2023-02-23 10:57:54浏览次数:32  
标签:function return 小用 欢迎 更新 str

1. 字符串下划线转为驼峰式

1 function toCamel(str) {
2   if(typeof str!=="string") return str;
3   return str.replace(/_(\w)/g, function (a, b) {
4     return b.toUpperCase()
5   })
6 }

 

标签:function,return,小用,欢迎,更新,str
From: https://www.cnblogs.com/grow-up-up/p/17147144.html

相关文章