Tutorial by Examples

The Pipe implementation import {Pipe, PipeTransform} from '@angular/core'; @Pipe({ name: 'orderBy', pure: false }) export class OrderBy implements PipeTransform { value:string[] =[]; static _orderByComparator(a:any, b:any):number{ if(a === null || typeof a === 'undefin...

Page 1 of 1