Angular - Reactive Forms
In this code snippet:
The console logs
this.form = new FormGroup({
age: new FormControl(25)
});
this.form.controls.age.markAsPristine();
console.log(this.form.controls.age.pristine);The console logs
false. Why?