面试题总结 - 函数 深拷贝 驼峰转换阿里巴巴前端面试分享-社招(p6)
1 JSON key 驼峰转换实现一个转换函数covert,将JSON对象的下划线keys({a_jh_dhs: 99})转化为驼峰形式 {aIhDhs: 99}function getCase(obj) { const reg = /_(.)/g function keyToCase(str) { if(typeof str !== 'string') return '' return str.replace(reg, (match, $) => { .