Concept Flow - pipe method for chaining operators
Start with Observable
Call pipe() method
Pass operators as arguments
Operators execute in order
Return new Observable
Subscribe to get final output
The pipe method takes multiple operators and chains them in order, returning a new Observable that applies all operators sequentially.