let value = 'small text'; const valueUpper: string = value.charAt(0).toUpperCase() + value.substr(1).toLowerCase(); // output: Small text