Angular - Reactive Forms
What will be the validity of this FormControl?
const control = new FormControl('12345', [Validators.minLength(6)]);
console.log(control.valid);