In the context of Reactive Forms, which property indicates the current value of the FormControl, FormGroup, or FormArray instance?

  • currentValue
  • formData
  • formValue
  • valueChanges
In Angular Reactive Forms, the valueChanges property indicates the current value of the FormControl, FormGroup, or FormArray instance. This property allows you to subscribe to changes in the form control's value and react accordingly when the user interacts with the form elements. It's a crucial property for handling form data.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *