Pipe
pipe()
function
The pipe function allows us to use multiple operators. The pipe function is the assembly line from your observable data source through your operators. Just like raw material in a factory goes through a series of steps before it becomes a finished product, source data can pass through a pipe-line of operators where you can manipulate, filter, and transform the data to fit your use case. It's not uncommon to use 5 (or more) operators within an observable chain, contained within the pipe function.
Last updated
Was this helpful?