angular validation reactive forms code example
Example 1: ng2 validations angular using reactiveforms
Example 2: formgroup check if valid
form: FormGroup;
onSubmit(){
//checks if form is valid
if( this.form.valid){
//more code here
}
}