For handling multiple values over time in Angular, you would use ________ instead of Promises.

  • Components
  • Decorators
  • Modules
  • Observables
In Angular, when you need to handle multiple values over time, you should use Observables instead of Promises. Observables are more versatile and allow you to work with asynchronous data in a more flexible manner. They can emit multiple values, making them ideal for scenarios like handling streams of data from HTTP requests or user interactions.
Add your answer
Loading...

Leave a comment

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