比如字符串
get-element-by-id
,转换成getElementById
function hump(str){
return str.replace(/-(\w)/g,function($0,$1){
return $1.toUpperCase();
})
}
function hump(str){
return str.replace(/-(\w)/g,function(x){
return x.slice(1).toUpperCase();
})
}
参考资料: