Skip to content

Instantly share code, notes, and snippets.

@agamdua
Last active August 29, 2015 13:56
Show Gist options
  • Save agamdua/9252384 to your computer and use it in GitHub Desktop.
Save agamdua/9252384 to your computer and use it in GitHub Desktop.
Simple example illustrating basic usage of the ngRepeat directive (AngularJS)
<div ng-controller="ExampleCtrl1">
<div ng-repeat="book in books">
{{ $index+1 }} {{ book }}
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment