Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Two conditions in one if statement

How to check both conditions at the same time in one if statement in angular 9+

I need to satisfy both conditions for my html element.

i have tried <div *ngIf="(params.folder!= 'folder1') || (params.folder!= 'folder2')">

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

If that didn’t work, try this:

<div *ngIf="((params.folder!= 'folder1') && (params.folder!= 'folder2'))">
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading