Event Propagation in JavaScript
Event Bubbling, Event Capturing, Event Delegation
May 12, 20225 min read492

Search for a command to run...
Articles tagged with #web-development
Event Bubbling, Event Capturing, Event Delegation

Introduction Javascript is a single-threaded interpreted language with a non-blocking event loop. What this means is that everything runs on a single main thread so it's important to use the thread only when required. Blocking this main thread means ...

Introduction One of the reasons React is so popular is that it's blazing fast. This speed is achieved by updating only part of the real DOM that has changed. But, updating the real DOM is a slow process. So, how does React achieve this? React achieve...
