I have my Reactive form with field - Status (which can have values \'A\' or \'I\'):
this.form = this.formBuilder.group({ result_info: this.formBuilder.
You can retrieve the value like this:
test(event) { console.log(event.target.value) return event.target.value }
and then you assign the value of the property status to the result of the function test()