Angular - Lifecycle Hooks
Identify the issue in this Angular component's
ngOnDestroy method:export class CleanupComponent implements OnDestroy {
private timerId: any;
ngOnDestroy() {
clearInterval(timerId);
}
}