Angular - Reactive Forms
Given this reactive form control initialization:
What will be logged to the console?
this.form = new FormGroup({
email: new FormControl('', [Validators.required, Validators.email])
});
this.form.controls.email.markAsTouched();
console.log(this.form.controls.email.touched);What will be logged to the console?
