how to make 1st letter capital in ejs

JavaScript
yourstring.replace(/\w/, c => c.toUpperCase())
Source

Also in JavaScript: