I want to read every rate property of my array. I don't know is there any method to call only $values from that rate record ??
I did this to call this array:
async ngOnInit() {
this.product$ = await this.reviewService.getReview(this.product.$key);
this.key = Object.values(this.product.reviews);
}
