Suggest an editImprove this articleRefine the answer for “What does a pending form status mean?”. Your changes go to moderation before they’re published.Approval requiredContentWhat you’re changing🇺🇸EN🇺🇦UAPreviewTitle (EN)Short answer (EN)**`PENDING`** means that the form (or an individual field) is currently undergoing asynchronous validation, a check whose result has not yet been received. **Key point:** `PENDING` is an intermediate state showing that the form is temporarily "waiting for a response", and the final validity (`VALID` / `INVALID`) has not yet been determined.Shown above the full answer for quick recall.Answer (EN)Image`PENDING` means that **the form (or an individual field) is currently undergoing asynchronous validation**, a check whose result has not yet been received. Example: If an `AsyncValidator` is set for a field, for example a check of whether a username is unique via a server request: ```typescript username = new FormControl('', [], [this.checkUsernameAvailability]); ``` When the user enters a value, Angular runs the asynchronous validator, and until the request completes, `username.status === 'PENDING'`. That is, `PENDING` is an **intermediate state**, showing that the form is temporarily "waiting for a response", and the final validity (`VALID` / `INVALID`) has not yet been determined.For the reviewerNote to the moderator (optional)Visible only to the moderator. Helps review go faster.