单词首字母大写

// 输入字符串'border-bottom-left',输出字符串格式为'borderBottomleft'
function change(str) {
    if (str.indexOf('-') == -1) {return;}
    let arr = str.split('-');
    for (let i=0; i 0) {
            arr[i] = arr[i].substring(0,1).toUpperCase() + arr[i].substring(1);
        }
    }
    return arr.join('');
}
console.log(change('border-bottom-left'));

你可能感兴趣的:(单词首字母大写)