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

Search for a command to run...
Articles tagged with #javascript
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 ...
