Skip to main content

Angular.Js

 AngularJS is a JavaScript-based open-source front-e nd web framework for developing single-page applic ations. It is maintained mainly by Google and a com munity of individuals and corporations. More..


History:

AngularJS was created, as a side project, in 2009 by two developers, Misko Hevery and Adam Abrons.

 

Adam Abrons

 Misko Hevery

Example:


<!DOCTYPE html>  
<html ng-app="app">  
<head>  
    <meta charset="utf 8">
    <title>Codegram</title>    
</head>  
<body>
<h1 ng-controller="HelloWorldCtrl">{{message}}</h1>
<script src="https://code.angularjs.org/1.6.9/angular.js"></script>
<script>  
    angular.module("app", []).controller("HelloWorldCtrl", function($scope) {  
    $scope.message="Hello World"
    } )
</script>

</body>  
</html>