I am trying set default selected object for select option in angular 6.But it's not working
<select name="editUserType" class="form-select" id="editUserType" [(ngModel)]="updateModel.userType">
<option value="" selected disabled>Select User Type</option>
<option *ngFor="let userType of userTypeList" [selected ]="userType.code == updateModel.userType.code" [ngValue]="userType">{{userType.description}}</option>
</select>
userType is a object I want to, when I load web page set default object for select option.