Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
  <script src="https://unpkg.com/@reactivex/rxjs@5.0.3/dist/global/Rx.js"></script>
</head>
<body>
  <p>
    <button id="button1">--</button>
    <button id="button2">++</button>
  </p>
  <p id="output"/>
</body>
</html>
 
const minusButton = document.querySelector("#button1");
const plusButton = document.querySelector("#button2");
const output = document.querySelector("#output");
const minusButtonClick$ = Rx.Observable.fromEvent(button1, "click");
const plusButtonClick$ = Rx.Observable.fromEvent(button2, "click");
Rx.Observable.merge(
    minusButtonClick$.map(_ => -1),
    plusButtonClick$.map(_ => +1))
  .startWith(0)
  .scan((aggr, curr) => aggr + curr, 0)
  .subscribe(console.log);
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
jonstodlepro
0viewers