What is the main difference between a pure pipe and an impure pipe in Angular?
APure pipes can modify input data, impure pipes cannot.
BPure pipes run every change detection cycle, impure pipes run only when input references change.
CPure pipes run only when input references change, impure pipes run every change detection cycle.
DPure pipes are slower than impure pipes.