Prev Next

Web / RxJs Interview questions

Difference between RXJS and Promise.

RXJS.Promise.
Observable return stream of data.Promise return single value.
You can subscribe and unsubscribe stream.You cannot cancel a promise.
An Observable only starts if you subscribe to it. This is why Observables are called lazy.Promise starts immediately.
Subscribe method is used for error handling which makes centralized and predictable error handling.push errors to the child promises.
Provides chaining and subscription to handle complex applications.Uses only .then() clause.

Often Observable is preferred over Promise because it provides the features of Promise and more. With Observable, it doesn't matter if you want to handle 0, 1, or multiple events.

It's right time to invest in Cryptocurrencies Dogecoin! Earn free bitcoins up to $250 now by signing up.

Invest now!!! Get Free equity stock (US, UK only)!

Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.

The Robinhood app makes it easy to trade stocks, crypto and more.


Webull! Receive free stock by signing up using the link: Webull signup.

More Related questions...

Show more question and Answers...

HTML Interview questions

Comments & Discussions