Angular - Lifecycle Hooks
Consider this Angular component snippet:
How often will 'Change detection running' be logged during the component lifecycle?
export class TestComponent implements DoCheck {
ngDoCheck() { console.log('Change detection running'); }
}How often will 'Change detection running' be logged during the component lifecycle?
