Angular - Reactive Forms
Given this Angular reactive form control initialization:
What will be the values of
this.form = new FormGroup({
username: new FormControl('', Validators.required)
});
// User focuses on username input, types 'John', then leaves the input.What will be the values of
dirty, touched, and valid for username after these actions?