Answers for "ngfor conditional"

1

angular ngfor conditional pipe

//use ternary operator on your list and apply the pipes you need
*ngFor="let a of (condition ? (arr | pipe) : (arr | pipe2))"
Posted by: Guest on May-11-2021
2

ngFor and ngIf

<li *ngFor="let user of users; index as i; first as isFirst">
  {{i}}/{{users.length}}. {{user}} <span *ngIf="isFirst">default</span>
</li>
Posted by: Guest on April-17-2021

Browse Popular Code Answers by Language