1)What is bootstraping in angular JS ?
Bootstrapping in angular JS means, The process of angular code getting initialized/loaded.
This process can be in 2 ways where angular provided to us one is auto bootstrap and another is mannual bootstrap.
1.Auto Bootstrap : Auto bootstrapping can be done by simply providing the ng-app directive in any of the HTML element and here that element becomes as root element of angular.
Ex: <div ng-app="angapp"> </div>
2.Mannual Bootstrap : Mannual bootstrapping means, the developer itself makes a decission when to
Bootstrapping in angular JS means, The process of angular code getting initialized/loaded.
This process can be in 2 ways where angular provided to us one is auto bootstrap and another is mannual bootstrap.
1.Auto Bootstrap : Auto bootstrapping can be done by simply providing the ng-app directive in any of the HTML element and here that element becomes as root element of angular.
Ex: <div ng-app="angapp"> </div>
2.Mannual Bootstrap : Mannual bootstrapping means, the developer itself makes a decission when to