Angular

To get the names and values of Enums in typescript,we can loop through the enum object using for loop.
How To loop or get names & values of Enums in typescript

Steps to get index of ngFor element in Angular 1. Declare a variable inside *ngFor directive using let or as keyword. for instance say …
How to get index of ngFor element in Angular

Angular Decimal Pipe is one of the bulit in pipe in Angular used to format decimal numbers according to the given decimal digits info …
Angular Decimal Pipe & formatting decimal numbers in Angular with examples

To convert input field text to uppercase in angular we can use (ngModelChange ) method
How to Convert input field text to uppercase in Angular

Learn how to pluralize and format numbers in angular using ngPlural and ngPluralCase
ngPlural & ngPluralCase : Pluralization in Angular

To bind select element to object in angular use [ngValue] property.
How to bind Select element to object in Angular with examples

To fix Can’t bind to ‘ngModel’ since it isn’t a known property of ‘input’ error in Angular we have …
ngModel Angular Error: Can't bind to 'ngModel' since it isn't a known property of 'input'

To convert string to number in angular or typescript follow the below steps 1.Check if a string is number or not using Number() …
How To Convert string to number in Angular/Typescript

In Angular,To use ngfor and ngif together on same element place the *ngIf on a parent element that wraps the *ngFor element
How to use ngfor,ngif together on same element in angular

To select an element in Angular component template use ViewChild decorator
How to select an element in Angular Component Template