📅  最后修改于: 2022-03-11 15:04:14.011000             🧑  作者: Mango
const titleCase = title => title
.split(/ /g).map(word =>
`${word.substring(0,1).toUpperCase()}${word.substring(1)}`)
.join(" ");