Angular - Change Detection
You have a parent component passing a list of items to a child component with OnPush strategy. The parent updates the list by adding a new item using
items.push(newItem). The child does not update. How should you fix this to ensure the child updates efficiently?