kaniosrn-j
3/28/2019 - 10:54 AM

Convert first letter to Uppercase

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