private dataFromBackend: IprofileData;
ngOnInit() {
this.profileService.getEntities().subscribe(result => {
this.dataFromBackend = result;
});
console.log(this.dataFromBackend);
}
result
returns all the data that I need but this.dataFromBackend
returns undefined. I have also changed IprofileData
to any
but it still returns undefined. Why?