| What is Bootstrapping in AngularJS
Below are the some of very important points of AngularJS which help us to under stand what is Bootstrapping
(1)When we initialized the Angular App it is called Bootstrappingin AngularJS.
(2)ng-app directive also helps to understand which is the root of AngularJS application. It could be either the entire HTML page or can be some portion of that page.
(3)Once we declare the Root Angular reads the HTML within that root and compiles it into an internal representation. And that reading and compiling is called as Bootstrapping process. | | |