Angular - Reactive Forms
Given this reactive form code snippet, what will be the output of
console.log(this.form.valid) after setting the 'email' control to an empty string?this.form = new FormGroup({ email: new FormControl('', [Validators.required, Validators.email]) }); this.form.controls['email'].setValue('');