Posts

Showing posts with the label Introduction to Angular

Introduction to Angular

Welcome to the  Angular Tutorial . we will create an application at the end of this tutorial. we are writing this tutorial at the time of Angular 14 release. What is Angular? Angular is a UI Framework which is used to create Desktop and Mobile web Application. Angular  is built using JavaScript . The Angular is an open-source and helps us build dynamic & single-page applications (SPAs). With Angular you can create client-side application using HTML, CSS and TypeScript. Key differences between AngularJs & Angular 1. Controller and components In AngularJs we have controllers but in Angular we have component in place of controller.  In Angular, a component represents a UI element. You can have any number of components on a single web page. Each component is independent of each other and manages a section of the page. The components can have child components and parent components. 2. Directives Syntax of Directive is different in Angular as compared to AngularJs....