make 1st letterr capital ejs code example
Example 1: first letter tuUppercase
const string = "tHIS STRING'S CAPITALISATION WILL BE FIXED."
const string = string[0].toUpperCase() + string.slice(1)
Example 2: how to make 1st letter capital in ejs
yourstring.replace(/\w/, c => c.toUpperCase())