Guest User

Untitled

a guest
Jun 24th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. class Subject {
  2. constructor() {
  3. //
  4. this.observer = undefined;
  5. this.attachObserver = this.attachObserver.bind(this);
  6. }
  7.  
  8. //
  9.  
  10. attachObserver(observer) {
  11. this.observer = observer;
  12. }
  13. }
Add Comment
Please, Sign In to add comment