toCapitalCasing in js code example
Example 1: how to capitalize string in javascript
const name = 'flavio'
const nameCapitalized = name.charAt(0).toUpperCase() + name.slice(1)
Example 2: how to make 1st letter capital in ejs
yourstring.replace(/\w/, c => c.toUpperCase())