Hi,
I have the below code:
this.housingService.listFamilyFolders().subscribe(data => {
this.test = JSON.stringify(data);
this.test2 = JSON.parse(this.test);
console.log(this.test2);
});
this code is fine when I go to browser and press F12 I see:
{{test2}}
I am getting: [object Object]
why?