how to add in input first letter uppercase in angular code example
Example 1: angular pipe first letter uppercase
{{ value_expression | titlecase }}
Example 2: angular input force uppercase
<input formControlName="TEST" (input)="TEST.setValue(TEST.value.toUpperCase())">