Following are some of the important Angular 2 Interview Questions and Answers Describe important features of Angular 2? Angular 2 is a JavaScript framework for developing web applications.Since it is a complete rewrite of Angular 1.0 ,so learning AngularJS 1.0 is not required for creating Angular 2 applications. It is well suited for developing mobile applications […]
Angular 2
Commonly used Decorators in Angular 2
Decorators in Angular 2 are used extensively.Decorators are used to attach metadata to program elements such as class and properties.Metadata is used to specify details about program entities.Decorators give special meaning to program elements.Here we will look at some of the most commonly used Decorators in Angular 2. Decorators are a feature of TypeScript and are […]
Create Component in Angular 2
Two of the main parts of any angular 2 application are Component Module Module is a container of other application elements such as component,directives.We create a module in angular 2 application using NgModule decorator as we have seen in Developing a Module in Angular 2. To create component we use the NgComponent decorator.We pass the […]
NgModule in Angular 2
Angular 2 applications are designed for better application organization.Two of the main concepts related to organization of code in Angular 2 are components and modules.Both Components and modules are created by using the decorator functions.NgModule in Angular 2 is used to create a module. Here we will see how to implement a simple module in […]
Advantages of Angular JS 2.0
HTML is the primary language of the web since the inception of web technologies.It is also one of the easiest languages to learn.But it has a very specific purpose ,which is to create the static documents for the web. But software development has come a long way since its inception.From browsers serving static HTML pages […]