Is there a method to call only the $values from each rate record in my array that I want to read?
https://i.sstatic.net/MT2XK.png
This is what I have done to access this array:
async ngOnInit() {
this.product$ = await this.reviewService.getReview(this.product.$key);
this.key = Object.values(this.product.reviews);
}