How can we get data from an array of objects in angular. I have provided the typescript & service file & the consoled image. How can we able to get datas inside results object in the image??
Ts File
this.commonService.fetchVersionValue().subscribe((data) => {
console.warn(data);
});
Service File
fetchVersionValue(): Observable<IVersionDetails[]> {
return this.http.get<IVersionDetails[]>(
`${this.PHP_API_SERVER}/api/get/versions`
);
}
Image
while looking the console I got the error

The Api from php Server Help Me to Sort this Problem . Thanks in Advance
