I have either a typescript or javascript syntax issue. Can someone tell me what _ => this.log... means?
I am used to seeing a name the parameter being passed into the arrow function there.
Does it simply mean 'no parameter'?
Ref: https://angular.io/tutorial/toh-pt6#add-heroserviceupdatehero
/** PUT: update the hero on the server */
updateHero (hero: Hero): Observable<any> {
return this.http.put(this.heroesUrl, hero, httpOptions).pipe(
tap(_ => this.log(`updated hero id=${hero.id}`)),
catchError(this.handleError<any>('updateHero'))
);
}