An Observable that can emit multiple values over time is different from a Promise, which can resolve only ________.

  • multiple times
  • never
  • once
  • twice
An Observable can emit multiple values over time, whereas a Promise can resolve only once. This fundamental difference makes Observables suitable for handling asynchronous streams of data, while Promises are used for handling single asynchronous operations.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *