const capitalize = (s) => { if (typeof s !== 'string') return '' return s.charAt(0).toUpperCase() + s.slice(1) } code example
Example: how to make 1st letter capital in ejs
yourstring.replace(/\w/, c => c.toUpperCase())
yourstring.replace(/\w/, c => c.toUpperCase())