Observables are used for event handling, asynchronous programming, and handling multiple values. Observables are declarative, means consumers has to subscribe…
@input decorator used to pass data from parent to child component. @Output decorator is used to pass the data from…
Angular pipes are used for transforming data like dates, strings, currency, etc. Pipes accepts input values and return the transformed…
All our Git Articles at one place for easy access. Getting Started with Git Git Tutorial Part II We will…
Git Clone git clone <Repository URL>: Downloads a git repository onto the local machine and its entire version history from…
Polymorphism for different classes having the same method names Polymorphism with Inheretence Polymorphism by passing Class Objects to Functions In-built…
Abstract classes are classes that contain one or more abstract methods. An abstract method is a method that is declared,…
ViewChild is used to access a directive, child component, or a DOM element from a parent component class. View queries…
The @property built-in decorator is used to create the properties on any method in the class. @property is used to…
ng-template is a directive which can be invoked based on certain conditions like *ngIf, *ngFor *ngSwitch etc., We can create…