With this code I get the first ngfor options and I do not know how to show the first options first by default. How could he do it? By default I get the ngFor options and I want the first option.
<div class="form-group">
<label for="exampleFormControlSelect1">Grup</label>
<select class="form-control" id="operato" formControlName="company">
<option disabled selected value>Escoja</option>
<option *ngFor="let operat of operato;">{{operato.companyName}}</option>
</select>
</div>