Skip to main content

Posts

Showing posts from August, 2021

What is the difference between AngularJS and Angular?

Angular JS:  AngularJs is a Javascript open-source front-end framework that is mainly used to develop single-page web applications(SPAs). It is a continuously growing and expanding framework which provides better ways for developing web applications. It changes the static HTML to dynamic HTML. It’s features like dynamic binding and dependency injection eliminates the need for code that we have to write otherwise.AngularJs is rapidly growing and because of this reason, we have different versions of AngularJs with the latest stable being 1.7.7. It is also important to note that Angular is different from AngularJs. It is an open-source project which can be freely used and changed by anyone. It extends HTML attributes with Directives, and data is bound with HTML. Angular:  It is a popular open-source Typescript framework created by Google for developing web applications. Front-end developers use frameworks like Angular or React for presenting and manipulating data efficiently. Updated Angu

What is Angular Framework?

There are many definitions of Angular Framework. I am sharing some of them, all of them lead to same thing. 1. Angular is a TypeScript-based open-source front-end platform that makes it easy to build applications with in web/mobile/desktop. The major features of this framework such as declarative templates, dependency injection, end to end tooling, and many more other features are used to ease the development. 2. Angular is a platform and framework for building single-page client applications using HTML and TypeScript. Angular is written in TypeScript. 3. Angular is a TypeScript-based free and open-source web application framework led by the Angular Team at Google and by a community of individuals and corporations. Angular is a complete rewrite from the same team that built AngularJS. 4. Angular is a framework and platform that is written in TypeScript.  It is used for developing single page applications employing TypeScript and HTML template language.  5. Angular is a framework for

Why HTML is used?

  Primary use of HTML is to structure a web page and its content.  Let's take an example: You are constructing a house.  While constructing you will be deciding how many BHK you want, how many washroom you want, how many balconies you want, how many light bulb or fans you want, whether you want to have Kids study room or not, etc. Same way while creating a web page, using HTML you can decide how many sections will be in Header, Left Bar, Footer or sidebar. In HTML terminology, see below examples: You want to make three sections - Header, Body and Footer. You can use below HTML code:     <div id="header">               Header Content that also includes other Links of website/page     </div>     <div id="pageBody">               Page Body comes here, It contains main content of page     </div>     <div id="footer">     Page footer comes here. It contains Copyright and Privacy Policy and other links     </div> I hope th