Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/rxjs/2.3.22/rx.all.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
</body>
</html>
 
console.clear();
var promise = new Promise(function (resolve, reject) {
  setTimeout(function () {
    console.log('timeout');
    resolve(123);
  }, 1000);
  console.log('promise started');
});
promise.then(x => console.log('resolved: ' + x));
var observable = Rx.Observable.create(function (observer) {
  var tid = setTimeout(function () {
    console.log('obs timeout');
    observer.onNext(123);
  }, 1000);
  console.log('observable started');
  return function dispose() {
    clearTimeout(tid);
  };
})
var subscription = observable.subscribe(x => console.log('next: ' + x));
setTimeout(function () {
  console.log('dispose');
  subscription.dispose();
}, 500);
Output

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

Dismiss x
public
Bin info
staltzpro
0viewers