angular pipe with parameters code example
Example 1: What are the parameters for the number Pipe - Angular 2
{{ exampleNumber | number : '1.2-2' }}
Format: {minIntegerDigits}.{minFractionDigits}-{maxFractionDigits}
So example of '1.2-2' means:
A minimum of 1 digit will be shown before decimal point
It will show at least 2 digits after decimal point
But not more than 2 digits
Example 2: command to create custom pipe in angular 6
ng generate pipe personName
Example 3: angular pipe multiple arguments
new MyPipe().transform(myData, arg1, arg2, arg3)