reactive form control get value in html code example
Example: reactive forms get value of control
/*-----Angular reactive forms-----*/
// declare a form with properties i.e. name
this.form = this.formBuilder.group({
name: ['', Validators.required]
});
// Get value
this.form.get('name').value