Angular - Change Detection
You have this Angular component code:
What problem might occur here?
constructor(private cd: ChangeDetectorRef) {}
update() {
this.data = fetchData();
// missing change detection call
}What problem might occur here?
