export class AppComponent {
constructor(){
//block of statements
}
ngOnInit(){
}
}
when i set debugger in constructor and in ngOnInit() then it comes twice in both the methods, I don't know how is happening
export class AppComponent {
constructor(){
//block of statements
}
ngOnInit(){
}
}
when i set debugger in constructor and in ngOnInit() then it comes twice in both the methods, I don't know how is happening