Skip to content

Instantly share code, notes, and snippets.

@JaysonChiang
Created April 10, 2021 10:41
Show Gist options
  • Save JaysonChiang/25204dd04def05c029358d682c6e7500 to your computer and use it in GitHub Desktop.
Save JaysonChiang/25204dd04def05c029358d682c6e7500 to your computer and use it in GitHub Desktop.
const subject = {
observers: [],
subscribe(observer) {
this.observers.push(observer)
},
notify(message) {
this.observers.forEach(observer => observer.update(message));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment