Web Development
Angular
Subjective
Oct 23, 2025
What are Angular pipes and how do you create custom pipes?
Detailed Explanation
Pipes transform displayed values without changing original data. Built-in: date, currency, uppercase. Custom: @Pipe({name: "exponential"}) export class ExponentialPipe implements PipeTransform { transform(value: number, exponent = 1): number { return Math.pow(value, exponent); } }
Discussion (0)
No comments yet. Be the first to share your thoughts!
Share Your Thoughts