Angular - Lifecycle Hooks
You have this Angular component:
What is the problem with this code?
export class DataComponent implements OnDestroy {
subscription = this.dataService.getData().subscribe();
ngOnDestroy() {
this.subscription.unsubscribe;
}
}What is the problem with this code?
