How do you create a custom pipe in Angular?
In Angular 2, you can create custom pipes. The simplest way is as follows.
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({name: 'Pipename'})
export class Pipeclass implements PipeTransform {
transform(parameters): returntype { }
}
BY Best Interview Question ON 24 Jun 2020