Skip to content

Instantly share code, notes, and snippets.

@devmobasa
Last active April 26, 2017 04:55
Show Gist options
  • Select an option

  • Save devmobasa/86bb04b15cd89f49a7a5a9a9a53896b0 to your computer and use it in GitHub Desktop.

Select an option

Save devmobasa/86bb04b15cd89f49a7a5a9a9a53896b0 to your computer and use it in GitHub Desktop.
Simple observer multiple subscribers - Coding Blast - www.codingblast.com
let observer = new SimpleObserver();
source.subscribe(observer);
let observer2 = new SimpleObserver();
source.subscribe(observer2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment