I am setting value of select option in a loop . Have a look at the code
<div *ngFor="let sport of sport_data;" class="row">
<select [(ngModel)]="sports.value" class="form-control">
<option value="football">Sports</option>
<option value="cricket">Cricket</option>
</select>
</div>
Here sport_data is the array of list of sports . Its not working fine . Is their any other way to set default value of select element?