angular 10 inout isdirty code example
Example 1: validation minlength angular
Validators.minLength(9)
Example 2: formgroup check if valid
form: FormGroup;
onSubmit(){
//checks if form is valid
if( this.form.valid){
//more code here
}
}