Angular - Change Detection
Given this Angular component:
What will Angular do when
@Component({ selector: 'app-counter', template: '{{count}}', changeDetection: ChangeDetectionStrategy.Default }) export class CounterComponent { count = 0; increase() { this.count++; } }What will Angular do when
increase() is called?