// 题3:字符串转成驼峰: 利用数组和字符串的方法
var str=‘border-bottom-color‘;
function ad(str){
var res=str.split(‘-‘);
for(var i=1;i<res.length;i++){
console.log(typeof res[i])//string
res[i]=res[i].slice(0,1).toUpperCase()+res[i].substring(1);
}
return res.join(‘‘);
}
console.log(ad(str));
时间: 2024-10-10 13:41:50