titleCase


Created February 8, 2025
function titleCase(str) {
    return str.charAt(0).toUpperCase() + str.slice(1)
}
Returns a string with the first letter capitilized