Skip to content

Instantly share code, notes, and snippets.

@teyfix
Last active June 20, 2021 12:39
Show Gist options
  • Save teyfix/8b11587f0bce33d5bd5fe0130477ae5b to your computer and use it in GitHub Desktop.
Save teyfix/8b11587f0bce33d5bd5fe0130477ae5b to your computer and use it in GitHub Desktop.
rxjs - subscribing subject
const subject = new Subject();
subject.subscribe(value => console.log(value));
subject.next('lorem');
subject.next('ipsum');
subject.next('dolor');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment