Tuesday, 7 November 2017

General Information about what does AngularJs means

Angular.js is an MVW (Model-View-Whatever) open-source JavaScript web framework that facilitates the creation of single-page applications (SPA) and data-driven apps.

Example: Sample program to show the working of Angularjs
<! DOCTYPE html>
<html>
<script src=" https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js"></script>
<body>
<div ng-app="">
<p>Address: <input type="text" ng-model="name"></p>
Hello <span ng-bind="name" style="color: red";> </span>

</div>
</body>
</html>

E.g. Description

Angularjs:

Angular.js is an MVW (Model-View-Whatever) open-source JavaScript web framework that facilitates the creation of single-page applications (SPA) and data-driven apps. Develop and maintained by Google and by a community of individual developers. It was originally developed in 2009 by Misko Hevery and Adam Abrons. Its latest version is 2.0.
In other words, you can say that the Angularjs adopts an extended form of HTML with new attributes.
AngularJS is built on the belief that declarative programming should be used to create user interfaces and connect software components, while imperative programming is better suited to defining an application's business logic.
By providing a framework for client-side model–view–controller (MVC) and model–view–view model (MVVM) architectures, along with components commonly used in rich Internet applications Angularjs aims to simplify both the development and the testing of mobile applications.

Read More

No comments:

Post a Comment