The Reactive Extensions for JavaScript have a number of examples that highlight the unique capabilities of the library.
Using nothing more than Rx.BehaviorSubject objects, see how easy it is to accomplish Knockout.js style data-binding.
Coordinate key up behavior with querying a web service to retrieve hints for queries.
Paint on an HTML5 Canvas by coordinating mouse move with mouse down events until mouse up.
Do data binding just like you would with knockout.js.
Create an image cropper which coordinates the corners of an image to crop.
Implement drag and drop with ease of dragging an image around a page.
Implement the Konami Code using the Reactive Extensions with a buffer to react to entering the following:
↑↑↓↓←→←→BA
Using Require.js with the Reactive Extensions for JavaScript.
Unit testing the Reactive Extensions operators using Jasmine.
Unit testing the Reactive Extensions operators using Mocha with Node.js
Unit testing the Reactive Extensions operators using QUnit.
This is an example showing Time Flies Like An Arrow which moves around based upon mouse movements. Each letter is delayed by its position multiplied by its index.