You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -485,7 +485,7 @@
485
485
| 457 |[What is the difference between map and forEach functions?](#what-is-the-difference-between-map-and-foreach-functions)|
486
486
| 458 |[Give an example of statements affected by automatic semicolon insertion?](#give-an-example-of-statements-affected-by-automatic-semicolon-insertion)|
487
487
| 459 |[What are the event phases on browser?](#what-are-the-event-phases-on-browser)|
488
-
| 460 |[What are the real world usecases of proxy?](#what-are-the-real-world-usecases-of-proxy)|
488
+
| 460 |[What are the real world use cases of proxy?](#what-are-the-real-world-use-cases-of-proxy)|
489
489
<!-- TOC_END -->
490
490
491
491
<!-- QUESTIONS_START -->
@@ -8602,7 +8602,7 @@ Here are some common use cases of closures:
8602
8602
8603
8603
**[⬆ Back to Top](#table-of-contents)**
8604
8604
8605
-
459. ### What are the event phases on browser?
8605
+
459. ### What are the event phases of a browser?
8606
8606
There are 3 phases in the lifecycle of an event propagation in JavaScript,
8607
8607
8608
8608
1. **Capturing phase:** This phase goes down gradually from the top of the DOM tree to the target element when a nested element clicked. Before the click event reaching the final destination element, the click event of each parent's element must be triggered.
@@ -8617,8 +8617,8 @@ Here are some common use cases of closures:
8617
8617
8618
8618
**[⬆ Back to Top](#table-of-contents)**
8619
8619
8620
-
460. ### What are the real world usecases of proxy?
8621
-
Proxies are not used in regular day to day JavaScript work but they enabled many exciting programming patterns. Some of the real world usecases are listed below,
8620
+
460. ### What are the real world use cases of proxy?
8621
+
Proxies are not used in regular day to day JavaScript work but they enabled many exciting programming patterns. Some of the real world use cases are listed below,
8622
8622
8623
8623
1. Vue3 used proxy concept to implement reactive state
0 commit comments