Skip to content

Instantly share code, notes, and snippets.

@ngohungphuc
Created August 2, 2019 08:42
Show Gist options
  • Save ngohungphuc/2ce2f262cbb0a19c7c506d0230a1e768 to your computer and use it in GitHub Desktop.
Save ngohungphuc/2ce2f262cbb0a19c7c506d0230a1e768 to your computer and use it in GitHub Desktop.
import { BehaviorSubject } from 'rxjs';
// Behavior subjects need a first value
let behaviorSubject = new BehaviorSubject<string>("Some dummy first value");
behaviorSubject.asObservable().subscribe((data) => {
console.log(`Get data ${data}`);
});
behaviorSubject.next("next value")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment