I have multiple questionnaires, and I'm looking to use *ngIf to control which ones are displayed in a specific div.
Currently, I'm handling this by specifying each individual question number:
<div *ngIf = "questionNo!= '00' && questionNo!= '04' && questionNo != '21'">
...</div>
I believe there must be a more efficient way, such as using *ngIf= "questionNo != [00.01,02....]", but my attempts have been unsuccessful.
Your assistance on this matter would be greatly appreciated! Thank you!