why angular js framework

7
ANGULAR JS ADVANCED JAVASCRIPT FRAMEWORK

Upload: sakthi-bro

Post on 08-Apr-2017

52 views

Category:

Presentations & Public Speaking


1 download

TRANSCRIPT

Page 1: Why angular js Framework

ANGULAR JSADVANCED JAVASCRIPT FRAMEWORK

Page 2: Why angular js Framework

ANGULAR HISTORY $scope.Founder = Misco Hevery;$scope.Experiance = “ 10 Years” ;$scope.Working = “ Google ” ;

Page 3: Why angular js Framework

HOW TO START ANGULAR JS <html ngApp=“” ngController =“Test”> <head><script src=“angular.min.js”></script> <body> <h1> Welcome To Angular JS </h1> </body> <script > Var app .angular.module(‘ myApp ’ ,[ ]); App.controller( $scope ,function() { }) ; </script> </html>

Page 4: Why angular js Framework

WHY ANGULAR JS

Less Coding | Take Less Time Advanced User Interface Design SPA Application Directive | Service

Page 5: Why angular js Framework

WHAT IS CONTROLLER & $SCOPE? Controller is a Function .Every Template Have OwnController Function Writed Here

In Javascript Variable Declaration Ex : var Str= “Hi” ;

In Angular Js Framework Variable Declaration :Ex : $scope .str =“Hi Angular ” ;

Page 6: Why angular js Framework

ANGULAR ADVANTAGES

Web page Has No Loading . This Is A Power Of Angular JS Framework

Service , Factory , Directive Jquery INSTEAD of JqliteDependancy Injection of Module

Page 7: Why angular js Framework

The END