Skip to content

Latest commit

 

History

History
21 lines (19 loc) · 405 Bytes

File metadata and controls

21 lines (19 loc) · 405 Bytes

functional javascript

Exercises from http://reactivex.io/learnrx/ for learning functional javascript and reactive programming (RxJs).

Functional javascript implemententations:

  • map()
  • concatMap()
  • filter()
  • reduce()
  • zip()

Reactive Programming methods:

  • Observable.fromEvent()
  • take()
  • takeUntil()
  • Observable.create()
  • next()
  • error()
  • complete()
  • throttleTime()
  • distinctUntilChanged()