Skip to content

Instantly share code, notes, and snippets.

@zachgoll
Last active September 12, 2020 17:48
Show Gist options
  • Save zachgoll/cf6e021e49d3192ec10ebf052af1d87e to your computer and use it in GitHub Desktop.
Save zachgoll/cf6e021e49d3192ec10ebf052af1d87e to your computer and use it in GitHub Desktop.
// Note: The "$" is a convention that is used to denote an Observable variable type and does nothing than add styling
outerObs$.pipe(switchMap(
(outerObservableValue) => {
return innerObservable$.pipe(
map((innerObservableValue) => {
return
})
);
}
))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment