How do I add or push to an existing set of Validators on FormControl? I want to add as an array. The following answer will only set them all at once .
In Angular, how to add Validator to FormControl after control is created?
Angular - Dynamically add/remove validators
newFormControl.setValidators([Validators.required])
newFormControl.setValidators([Validators.pattern("^[0-9]*$")])
newFormControl.setValidators([Validators.maxLength])