Skip to main content

Posts

Showing posts from October, 2022

Angular - Q/A

1. What is angular? An open source framework for building single page applications using web technologies like HTML, CSS and JS. Angular is written in typescript and follow typescript syntax to write code. It helps developers to build applications for browsers, mobiles and desktops. 2. How many versions of angular released? From Angular 1 to Angular 11, In the whole they skipped version number 3.  Latest angular version is 14. And they have a 6 months of major release cycle.So we can expect a new version of angular in every 6 months. 3. What are the Difference between Angular 2+ and Angular 1.x? Angular 2+ Angular 1.x Based on Components Controller and Scope Mobile first Yes No Angular CLI Yes No Ways to define services Only by defining a class Factory, Service, Provider, Values and constants Runs Clinet-sed and Server-side Client-side Ways to initialize app Using bootstrapModule() function Using ng-app and angular.bootstrap function Su