📜  js首字母转大写 - Javascript代码示例

📅  最后修改于: 2022-03-11 15:02:54.248000             🧑  作者: Mango

代码示例6
const titleCase = title => title
    .split(/ /g).map(word =>
        `${word.substring(0,1).toUpperCase()}${word.substring(1)}`)
    .join(" ");