Angular - Lifecycle Hooks
This Angular component code has an error:
What is the problem?
export class DemoComponent implements OnInit {
ngOnInit() {
console.log('Init');
}
ngOnDestroy() {
console.log('Destroy');
}
ngOnInit() {
console.log('Second Init');
}
}What is the problem?
