I got problem to get specific object in array.
Example array
I just want id
Code
for (let item of this.commonService.popularList$.getValue()) {
        console.log(item['menuList'])
}
if I add code like this console.log(item['menuList'][id]) it display like this undefined



item['menuList'][0]['id']or evenitem['menuList'][0].id(unless I misunderstood something)popularList$onObservable? That's usually what the$suffix indicates.