Angular - RxJS and Observables Fundamentals
Identify the issue in this Angular component's unsubscription code:
export class TestComponent implements OnDestroy {
private subscription = this.service.getData().subscribe();
ngOnDestroy() {
this.subscription.unsubscribe;
}
}