匈牙利命名法转驼峰命名法
let str = 'person_first_name' function toUp(str) { let newStr = '' let arr = str.split('_') //先用字符串分割成数组 arr.forEach((item,index)=>{ if(index>0){ return newStr+= item.replace(item[0],item[0].toUpperCase()) ...