function to get the first alphabet of the first string into uppercase code example
Example 1: javascript capitalize first letter
const lower = 'this is an entirely lowercase string';
const upper = lower.charAt(0).toUpperCase() + lower.substring(1);
Example 2: how to make 1st letter capital in ejs
yourstring.replace(/\w/, c => c.toUpperCase())