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://cdnjs.cloudflare.com/ajax/libs/rxjs/5.4.1/Rx.js"></script>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/rxjs-dom/7.0.3/rx.dom.js"></script>
</head>
<body>
</body>
</html>
 
console.clear()
const itemsPerPage = 30
const page = 2
const source = Rx.Observable
  .ajax('https://hacker-news.firebaseio.com/v0/topstories.json')
  .concatMap(res => Rx.Observable.from(res.response))
  .skip(itemsPerPage * (page - 1))
  .take(itemsPerPage)
  .concatMap(id => Rx.Observable.ajax(`https://hacker-news.firebaseio.com/v0/item/${id}.json`))
  .map(res => res.response)
  .scan((posts, post) => {
    posts.push(post)
    return posts
  }, [])
  .takeLast(1)
source.subscribe(x => console.log(x))
Output

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

Dismiss x
public
Bin info
dongy7pro
0viewers