Skip to content
Advertisement

Tag: rxjs-observables

RXJS – return observable value when doing a map

I have an array of inputIds where I am doing a map that returns a name and value object. Inside the map, I am calling this.inputService.getInputFieldObject which returns an Observable<InputValue>. How do I return the value of the subscription instead of returning an array of subscription values? So I could have attributes returned as an array with only name and

Advertisement