How to get a single value from FormGroup

angular, angular-reactive-forms, typescript

Solution

You can get value like this

this.form.controls['your form control name'].value

Problem

I am aware that I can get the values of a form using ``` JSON.stringify(this.formName.value) ``` However, I want to get a single value from the form. How do I go about doing that?

Original source