farcasmihai91
4/21/2018 - 2:00 PM

Angular - NgFor w TrackBy for Performance

// the component template
// <div *ngFor=”let item of list; trackBy: trackByFunction>

trackByFunction(id: number, item: any) {
  return item.id
}