Angular - Reactive Forms
Consider this Angular reactive form snippet:
What will be the output in the console?
this.form = new FormGroup({
password: new FormControl('', Validators.required)
});
this.form.controls.password.setValue('');
console.log(this.form.controls.password.valid);What will be the output in the console?
