3 phases of event propagation:
(“capturing” phase) occurs before the target handlers are invoked.
(“bubbling” phase) event bubbling.
The capturing phase is like the bubbling phase in reverse.
capturing handlers of the Window object are invoked first.
then the capturing handlers of the Document object, and so on.
⚠️ event target's capturing handlers are NOT invoked.