Angular - Lifecycle Hooks
Consider this Angular component code snippet:
What will be the value of
export class MyComponent implements OnInit {
data = '';
ngOnInit() {
this.data = 'Hello World';
}
}What will be the value of
data after the component initializes?