Google News
logo
AngularJS - Interview Questions
Explain ng-app directive.
ng-app directive defines and links an AngularJS application to HTML. It also indicate the start of the application.

<body ng-app ="app_name">
  //some content.....
</body>

Advertisement