Prev Next

Web / RxJs Interview questions

Why is rxjs called Push/Reactive and NOT Pull/Imperative?

Imperative programming means that the listener code (Observer) is responsible to pull stream of data. Reactive programming means you register a callback and the stream is responsible to push data.

More Related questions...

Show more question and Answers...


Comments & Discussions