For my application, I am using two different languages and have written them within two <option>
tags. Is it possible to combine both conditions into a single <option>
tag using interpolation?
<option *ngIf="this.language=='en' || category.odiyaName==null" [value]="category.id">
{{category.name}}
</option>
<option *ngIf="this.language=='or' && category.odiyaName" [value]="category.id">
{{category.odiyaName}}
</option>