Angular 12 tutorial # 34 Make custom pipes

preview_player
Показать описание
In this angular 12 version video, we learn how to make custom pipes in angular and get to know why use pipes in interview questions. This video is made by anil Sidhu in the English language.

Params with pipes
Use 2 pipes at the same time
Number pipes
Slice pipe
Currency Pipes
Interview Question

Рекомендации по теме
Комментарии
Автор

thank you very much. that helped a lot

FnaticMovieMakingArt
Автор

hi can you tell me which extension responsible to colorized the file name under same folder at the same color thanks

almogmishraki
Автор

Can I please ask what you are using to record your videos

BugArray
Автор

On applying this I am getting output 'Nan'....Can u pls explain whats the issue

meeramaahidoshi
Автор

Hi Anil,
Why you have defined price as
const [price] = args;
instead of
const price = args;

rahuljoshi
Автор

var arg1 = args[0];
var arg2 = args[1];
console.log("arg1=", arg1, "arg2=", arg2);

eaemmm
Автор

{{"INDIA" | reverseString}}

export class ReverseStringPipe implements PipeTransform {
transform(value: string, ...args: unknown[]): unknown {
let reversedString = '';
for (let index = value.length - 1; index >= 0; index--) {
reversedString += value[index];
}
return reversedString;
}
}

DeveloperRajeev