Jul 10, 2017 · 1 min read
There’s an excellent article titled The introduction to Reactive Programming you’ve been missing which suggests another alternative: using a -Stream suffix on all observable variable names, since an observable represents a stream of values.
So you’d have
const clickStream = Observable.fromEvent(button, 'click');I prefer this convention over all of the above suggestions.