Angular - Template-Driven Forms
In this Angular reactive form code:
What will be logged and why?
this.userForm = new FormGroup({
age: new FormControl(18, [Validators.min(18), Validators.max(65)])
});
this.userForm.controls.age.setValue(70);
console.log(this.userForm.valid);What will be logged and why?
