this.tab.committee.ratings.forEach is not an operator.
Typescript allows for much more readable code.
Use a for loop in style as follows:
for (let a of this.tab.committee.ratings) {
if (something_wrong) break;
}
p.s. forget “coding as with jQuery” in Angular. It just doesn’t work.