Skip to content

Instantly share code, notes, and snippets.

@web20opensource
Last active August 29, 2015 14:19
Show Gist options
  • Select an option

  • Save web20opensource/480610c19459be2cb1bc to your computer and use it in GitHub Desktop.

Select an option

Save web20opensource/480610c19459be2cb1bc to your computer and use it in GitHub Desktop.
Learning RxJs
return movieLists.map(
(cat) => {
return cat.videos.map ( (v,v2,v3) => {
debugger;
return v.boxarts.filter( (box,filter2,filter3) => {
debugger;
return box.width=='150'
})
.map( (my150,box2,box3) => {
debugger;
return {
'id': v.id ,
'title' : v.title ,
'boxart': my150.url
}
})
}).concatAll()
}).concatAll()
@web20opensource
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment