const lower = 'this is an entirely lowercase string'; const upper = lower.charAt(0).toUpperCase() + lower.substring(1);