Skip to content

Commit 17939f4

Browse files
committed
Add observable questions
1 parent 9cfade9 commit 17939f4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
|32| [Give an example of custom pipe?](#give-an-example-of-custom-pipe)|
4141
|33| [What is the difference between pure and impure pipe?](#what-is-the-difference-between-pure-and-impure-pipe)|
4242
|34| [What is a bootstrapping module?](#what-is-a-bootstrapping-module)|
43+
|35| [What are observables?](#what-are-observables)|
4344

4445
1. ### What is Angular Framework?
4546

@@ -564,7 +565,8 @@
564565
})
565566
export class AppModule { }
566567
```
567-
568+
35. ### What are observables?
569+
Observables are declarative which provide support for passing messages between publishers and subscribers in your application. They are mainly used for event handling, asynchronous programming, and handling multiple values. In this case, you define a function for publishing values, but it is not executed until a consumer subscribes to it. The subscribed consumer then receives notifications until the function completes, or until they unsubscribe.
568570
569571
570572

0 commit comments

Comments
 (0)