What are pipes?
A pipe takes in data as input and transforms it to a desired output. For example, let us take a pipe to transform a component's birthday property into a human-friendly date using date pipe.
import { Component } from '@angular/core';@Component({selector: 'app-birthday',template: `<p>Birthday is {{ birthday | date }}</p>`,})export class BirthdayComponent {birthday = new Date(1987, 6, 18); // June 18, 1987}
April 24, 2022
590
Read more
What is Angular Framework?
November 04, 2022
AngularWhat is a Angular module?
November 03, 2022
AngularWhat are the steps to use animation module?
October 31, 2022
Angular