TrackByFunction

interface

An optional function passed into NgForOf that defines how to track items in an iterable (e.g. fby index or id)

interface TrackByFunction<T> {
  (index: number, item: T): any
}

Methods

(index: number, item: T): any

Parameters

index

Type: number.

item

Type: T.

Returns

any

© 2010–2019 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v6.angular.io/api/core/TrackByFunction