I'm trying to access the text as a value. Currently I'm able to retrieve the value but not the text.
<select id="firstName" formControlName="firstName" class="form-control">
<option value="Not Selected" [disabled]="true" [selected]="true">Select</option>
<option *ngFor="let fName of clientFileData.worksheets[0].columns" value={{fName.index}}>{{fName.name}}</option>
</select>
Using this.firstName.value I'm able to get the value which is fName.index but I also want to access the fName.name. How can I retrive that value eqivalent of $("#firstName:selected").text(); in jquery?