function strToCamel(str){ return str.replace(/(^|_)(\w)/g,(m,$1,$2)=>$2.toUpperCase()); } console.log(strToCame('aa_bb_cc_d_e_f')) // AaBbCcDEF