Which object is responsible for tracking the value and validation status of an individual form control in reactive forms?

  • FormArray
  • FormControl
  • FormField
  • FormGroup
In reactive forms in Angular, the FormControl object is responsible for tracking the value and validation status of an individual form control. It represents a single input field and provides various methods and properties to manage its value and validation. FormArray and FormGroup are used for managing collections of controls or nested groups of controls, but FormControl is used for individual controls.
Add your answer
Loading...

Leave a comment

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