Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ReactiveX/learnrx
A series of interactive exercises for learning Microsoft's Reactive Extensions Library for Javascript.
https://github.com/ReactiveX/learnrx
Last synced: 3 days ago
JSON representation
A series of interactive exercises for learning Microsoft's Reactive Extensions Library for Javascript.
- Host: GitHub
- URL: https://github.com/ReactiveX/learnrx
- Owner: ReactiveX
- Created: 2013-01-09T21:48:45.000Z (almost 12 years ago)
- Default Branch: gh-pages
- Last Pushed: 2019-06-25T05:54:02.000Z (over 5 years ago)
- Last Synced: 2024-06-03T17:51:11.655Z (5 months ago)
- Language: JavaScript
- Size: 1.59 MB
- Stars: 1,402
- Watchers: 66
- Forks: 294
- Open Issues: 41
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Functional Programming in Javascript
=======This is a series of interactive exercises for learning Microsoft's Reactive Extensions (Rx) Library for Javascript. So why is the title "Functional Programming in Javascript"? Well it turns out that the key to learning Rx is training yourself to use functional programming to manipulate collections. Functional programming provides developers with the tools to abstract common collection operations into reusable, composable building blocks. You'll be surprised to learn that most of the operations you perform on collections can be accomplished with five simple functions:
1. map
2. filter
3. concatAll
4. reduce
5. zipHere's my promise to you: if you learn these 5 functions your code will become shorter, more self-descriptive, and more durable. Also, for reasons that might not be obvious right now, you'll learn that these five functions hold the key to simplifying asynchronous programming. Once you've finished this tutorial you'll also have all the tools you need to easily avoid race conditions, propagate and handle asynchronous errors, and sequence events and AJAX requests. In short, *these 5 functions will probably be the most powerful, flexible, and useful functions you'll ever learn.*
##[Try it Online](http://reactivex.io/learnrx/).