I am looking to iterate the user list with a condition.
<li *ngFor="let user of users" *ngIf="user.age>25"> {{user.name}} </li>
I understand that this code is incorrect. However, I would like to achieve something similar. Is there any way to make this work?