Colud you please help me how to pass multiple conditions to ngif and render the page. Example: I Have a drop down on top based on selection of item in dropdown i want to render the remaining page (html)
*ngIf ="contractModel.contractType=='251302'||contractModel.contractType=='251306'"
Rajkumar
Fullstack Developer.
What's wrong with regular && and || operators?
ng-if="dropdowntop == someVal && otherCondition"