Could you please guide me how to use *ngIf
in Angular 9 for multiple conditions as shown below. The following is not working for me.
*ngIf="abc !! xyz"
However, it is working for an individual condition like
*ngIf="abc"
or
*ngIf="xyz"
and the TS code is:
radioButtonChanged($event){
let radioValue = event.target['value'];
console.log(radioValue);
if(radioValue =='abc'){
this.abc = true;
this.xyz = false;
} else{
this.abc=false;
this.xyz = true;
}
}