How to capitalize first letter and lowercase the rest of the string

后端 未结 5 1296
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-20 05:22

I am trying to capitalize the first letter of only the first word in a sentence.

This is the data in the tsx file { this.text({ id: downloadPriceHistory

5条回答
  •  無奈伤痛
    2021-01-20 05:54

    try - make the rest of the string in lowercase as well.

    export function titleCase(string) {
         return string[0].toUpperCase() + string.substr(1).toLowerCase()
    }
    

提交回复
热议问题