Angularjs Examples

AJS Examples


AngularJS ng-Repeat Directive

The AngularJS ng-repeat directive is used to loop through a collection and creates new template for each item. Each item in the collection is given its own template and scope.

AngularJS ng-Repeat Properties

PropertyDescription
$indexiterator offset of the repeated element (0..length-1).
$firsttrue if the repeated element is first in the iterator
$middletrue if the repeated element is between the first and last in the iterator
$lasttrue if the repeated element is last in the iterator.
$even true if the iterator position $index is even (otherwise false).
$oddtrue if the iterator position $index is odd (otherwise false).

Syntax

AngularJS ng-Repeat Directive Example

See Live Example