Angular - Reactive Forms
Given this form control:
What will be the validation status if the user enters 'Hi'?
new FormControl('', [Validators.required, Validators.minLength(3)])What will be the validation status if the user enters 'Hi'?
