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