How to iterate the ngFor in reverse

you could try this
<ion-row *ngFor=“let data of calArr.slice().reverse()”>

2 Likes