Combine two or more (boolean) observables on single ngIf using async pipe
问题 Without observables I can write the following line in the HTML template: <div *ngIf="(myVarA || myVarB) && myVarC !== x"></div> How do I translate this line if all myVar variables are now actually observables? <div *ngIf="((myVarA | async) || (myVarB | async)) && (myVarC | async) !== x"> does not work. In another question (Putting two async subscriptions in one Angular *ngIf statement) the possibility to combine two or more observables into one ngIf can be achieved like <div *ngIf="{ a: