Skip to content

Commit 7c9f757

Browse files
authored
Update README.md
1 parent 7082111 commit 7c9f757

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -301,10 +301,10 @@
301301
|277| [How to create a standalone component uing CLI command?](#how-to-create-a-standalone-component-uing-cli-command)
302302
|278| [How to create a standalone component manually?](#how-to-create-a-standalone-component-manually)
303303
|279| [What is hydration ?](#what-is-hydration)
304-
|280| [What is Angular Signals ?](#what-are-angular-signals)
305-
|281| [What is Signals ?](#what-are-signals)
306-
|282| [Explain Angular Signals with example](#explain-angular-signals-with-example)
307-
|283| [What are the Route Parameters? Explain each of them.](#what-are-the-route-parameters-explain-each-of-them)
304+
|280| [What are Angular Signals?](#what-are-angular-signals)
305+
|281| [What are Signals?](#what-are-signals)
306+
|282| [Explain Angular Signals with an example](#explain-angular-signals-with-an-example)
307+
|283| [What are the Route Parameters? Could you explain each of them?](#what-are-the-route-parameters-could-you-explain-each-of-them)
308308
|284| [](#)
309309

310310
1. ### What is Angular Framework?
@@ -4735,7 +4735,7 @@
47354735
47364736
**[⬆ Back to Top](#table-of-contents)**
47374737
4738-
279. ### Explain Angular Signals with example.
4738+
279. ### Explain Angular Signals with an example.
47394739
In this example, we create a signal named `count` and initialize it with a value of 0. We then connect to the signal, allowing us to be notified whenever its value changes. Finally, we add a button that increments the count when clicked.
47404740
47414741
When the button is clicked, the `incrementCount()` method is called. This method sets the new value of the `count` signal to 1. Objects connected to the signal (subscribers) are then notified of the change, and the updated value is displayed in the UI.
@@ -4781,7 +4781,7 @@
47814781
47824782
**[⬆ Back to Top](#table-of-contents)**
47834783
4784-
279. ### What are the Route Parameters? Explain each of them.
4784+
279. ### What are the Route Parameters? Could you explain each of them?.
47854785
Route parameters are used to pass dynamic values in the URL of a route. They allow you to define variable segments in the route path, which can be accessed and used by components and services. Path parameters are represented by a colon (":") followed by the parameter name.
47864786
47874787
There are three types of route parameters in Angular:

0 commit comments

Comments
 (0)