I am trying to develop a contact form, I want user to enter phone number values between length 10-12.
Notably same validation is working on Message
Use Compose() method, compose multiple validators into a single function.
Update .TS file as below,
this.myForm = this.formBuilder.group({
phone: ['', Validators.compose([Validators.required, Validators.minLength(10), Validators.maxLength(12)])],
message: ['', Validators.compose([Validators.required, Validators.minLength(10), Validators.maxLength(100)])]
});