Address
Darbhanga, Bihar 846004

 

Kunal Kumar

Kunal Kumar

Structural Directive in Angular

*ngIf:- ngIf is the conditional directive of Angular. ngIf simply helps a view to be controlled based on a condition. Example: *This div only shows when its value is true.*ngIf works with Boolean only. *ngFor:- ngFor is used to loop…

Reactive Forms in Angular

Reactive forms use an explicit and immutable approach to managing the state of a form at a given point in time. Each change to the form state returns a new state, which maintains the integrity of the model between changes.…

Pipes In Angular

In Angular, a pipe is a feature that allows you to transform data in your templates. Pipes are used to format, filter, and manipulate data displayed in the view 1. Built-in Pipes Angular provides several built-in pipes for common transformations:…