I have an array defined in typeScript file
statusList: string[] = ['YES','NO']
Now I am iterating through the array in HTML page
<select id='status' [(ngModel)]="model.truckStatus" name = "status" #status = "ngModel" required>
<option *ngFor = "let status of statusList">
</select>
When I load the page by default I am getting an empty option, how to make the first value from an array to be selected by default?