要用js实现字符串首字母大写,需要自定义capitalize函数。将字符串解构为[first,...rest]即可。
function capitalize([first,...rest]){ return first.toUpperCase() + rest.join('') }