Angular

We can create a Progress spinner in Angular using material design component mat-progress-spinner.
Progress Spinner in Angular using mat-progress-spinner | Material Design

To fix Could not find Angular Material core theme error in Angular Material load prebuilt angular theme in global style file

Steps to use angular pipes in components and service ts files 1.Import angular pipe in app.module.ts file and add it to the providers …
How To Use Angular Pipes in Components & Service ts files

To add a conditional class in Angular we can pass an object to ngClass where key is the class name and value is condition i.e., true or …

To check the Angular CLI version use ng –version or ng v command

Angular date pipe used to format dates in angular according to the given date formats,timezone and country locale information.
Angular Date Pipe & formatting dates in Angular with examples

Step by step tutorial to use Font Awesome icons in Angular applications
How To Use Font Awesome icons in Angular Applications

Angular Currency Pipe is one of the bulit in pipe in Angular used to format currency value according to given country …
Angular Currency Pipe & Format Currency In Angular with examples

To capitalize first letter of each word in Angular use Angular's TitleCasePipe.We have to pass input to the titlecase pipe.
Angular TitleCase Pipe:Capitalize First Letter Of Each Word In Angular

Steps to delete a component in Angular1.Remove the import line reference from Angular app.module.ts file2.Remove the component …
How To Delete A Component In Angular