
ngApp
The first ngApp found in the document is used to define the root element to auto-bootstrap an application. ngapp is typically placed near the root element of the page like in the body or html tag.
ng-app executes at priority level 0.
ngInit
This directive is used to initialize the application data.
ng-init executes at priority level 450.
ngRepeat
This directive is used to iterate over the properties of an object.
ng-repeat executes...