Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 681 Bytes

what_is_an_observable.md

File metadata and controls

22 lines (13 loc) · 681 Bytes

What is an observable?

An Observable is a representation of a stream of values or events that can be observed over time. Observables are the core concept in reactive programming and are widely used in libraries like RxJS to manage asynchronous operations.

An observable can emit values, complete, or throw errors.

Example:

import { Observable } from 'rxjs';

let observable = new Observable(observer => {
  observer.next('Hello');
  observer.complete();
});
observable.subscribe(value => console.log(value));

**Tags**: [advanced](./level/advanced), [JavaScript](./theme/javascript), [RxJS](./theme/rxjs)