Guest User

Untitled

a guest
Dec 18th, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. const appEvents = pubSub();
  2. const appState = state("", appEvents);
  3.  
  4. const input = document.querySelector('.app input');
  5. const paragraph = document.querySelector('.app p');
  6.  
  7. input.addEventListener('input', (evt) => {
  8. appState.setValue(evt.srcElement.value);
  9. });
  10.  
  11. appEvents.subscribe((newValue) => {
  12. paragraph.textContent = newValue;
  13. });
Add Comment
Please, Sign In to add comment