Angular - Pipes
Given this Angular pipe usage:
If
items = [1, 2, 3];
// Template: {{ items | customPipe }}If
customPipe is pure and the array items is mutated by items.push(4) without changing the reference, what will happen?