Sage-Code Laboratory
index<--

Introduction to Angular

Angular is a platform for building mobile and desktop web applications. It is developed and maintained by Google. It is a MVC (Model View Controller) framework for TypeScript. Angular and AngularJS are two different things.

Angular version 11 was released on November 11, 2020. Each version is expected to be backward-compatible with the prior release. The Angular development team has pledged to do twice-a-year upgrades.

AngularJS is a JavaScript framework written in JavaScript. AngularJS is distributed as a JavaScript file, and can be added to a web page with a script tag. AngularJS extends HTML with ng-directives.

<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"></script>
<body>

<div ng-app="">
  <p>Name: <input type="text" ng-model="name"></p>
  <p ng-bind="name"></p>
</div>

</body>
</html>

Learning Angular


Read next: Server Side JS