Skip to main content

Posts

Showing posts with the label Auto bootstrap process in angularjs

Auto bootstrap process in angularjs

01 02 03 04 05 06 07 08 09 10 <!doctype html> <html ng-app= "myApp" > <body>      Result of Auto Bootstrapping {{ 4+2 }}.      <script src= "angular.js" ></script>      <script>          var formApp = angular.module( 'myApp' , []);      </script> </body> </html> <!doctype html> <html ng-app="myApp"> <body> Result of Auto Bootstrapping {{ 4+2 }}. <script src="angular.js"></script> <script> var formApp = angular.module('myApp', []); </script> </body> </html>