0 votes
in Angular by
Explain ng-app directive in Angular.

1 Answer

0 votes
by
ng-app directive is used to define Angular applications which let us use the auto-bootstrap in an Angular application. It represents the root element of an Angular application and is generally declared near <html> or <body> tag. Any number of ng-app directives can be defined within an HTML document but just a single Angular application can be officially bootstrapped implicitly. Rest of the applications must be manually bootstrapped.

Example

<div ng-app=“myApp” ng-controller=“myCtrl”>

First Name :

<input type=“text” ng-model=“firstName”>

<br />

Last Name :

<input type=“text” ng-model=“lastName”>

<br>

Full Name: {{firstName + ” ” + lastName }}

</div>

Related questions

+1 vote
asked Jan 15, 2020 in Angular by sharadyadav1986
0 votes
asked Dec 31, 2023 in Angular by DavidAnderson
...