Event delegation means attaching a single listener to a common ancestor instead of one listener per child, and using event bubbling to identify which child was actually interacted with (via event.target).
js
.().(
li.(, handle));
.().(, {
li = e..();
(li) (li..);
});
