javascript how to make first later capital of string code example
Example 1: how to make 1st letter capital in ejs
yourstring.replace(/\w/, c => c.toUpperCase())
Example 2: capitalize first carater js
const capitalize = (s) => {
if (typeof s !== 'string') return ''
return s.charAt(0).toUpperCase() + s.slice(1)
}
capitalize('flavio') //'Flavio'
capitalize('f') //'F'
capitalize(0) //''
capitalize({}) //''