Looping using ngFor and skip nth element
<div *ngFor="let item of items; let i=index">
<div *ngIf="i != n">{{i}} is not n</div>
</div>
I just learned from another issue, you can do it with Slice pipe
*ngFor="let item of items | slice:1;
where 1 is your nth element
https://angular.io/api/common/SlicePipe
see also: Angular start ngFor index from 1