Angular : How to use multiple conditions with ngIf
I love learning about technology and sharing that with others
Here we want to show something when some conditions is true.
here of the selectedTab is live or Archive we wants to show some content
<li class="treeview" *ngIf="selectedTab==='Live' || selectedTab==='Archive'">

