Create an arrow function when subscribing to the Observable, like this:
this.subscription = observable.subscribe((value) => this.update(value));
Or eliminate the function update by including the logic in the arrow function.
update