Title case a sentence?

后端 未结 13 1461
醉梦人生
醉梦人生 2021-02-10 01:27

I\'m trying to proper case a string in javascript - so far I have this code: This doesn\'t seem to capitalize the first letter, and I\'m also stuck on how to lowercase all the l

13条回答
  •  醉酒成梦
    2021-02-10 01:53

    const titleCase = str => {
        let string = str.toLowerCase().split(" ");
        let arr = [];
        
        string.map(x =>arr.push(x[0].toUpperCase() + x.slice(1))) 
        
        return arr.join(" ");
    }
    

提交回复
热议问题