I'm encountering a "declaration or statement expected" error after updating TypeScript and Angular.
getTopics() {
this._dataService.getTopics().subscribe(res => {
this.topics = res;
for (let i = 0; i < this.topics.length; i++) {
if (this.topics[i]._id > this.max) {
(this.max = this.topics[i]._id);
}
});
}