How do I append items to Observable?
Observable
This is some code:
this.logEntries = this.controllerService.getLog(this.controller.remoteID, this.
Perhaps the scan operator could interest you. Here is a sample:
scan
obs.startWith([]) .scan((acc,value) => acc.concat(value)) .subscribe((data) => { console.log(data); });
See this question for more details: