angular reactive form select option code example
Example 1: select option in reactive forms
<select class="custom-select" (change)="changeCity($event)" formControlName="cityName">
<option value="" disabled>Choose your city</option>
<option *ngFor="let city of City" [ngValue]="city">{{city}}</option>
</select>
Example 2: select option in reactive forms
// City Names
City: any = ['Florida', 'South Dakota', 'Tennessee', 'Michigan']