Modifiers are functions applied to a DOM node, whose lifecycles are tied to the DOM lifecycle.
References:
Set focus on an element when it is inserted:
<input type='text' {{autofocus}} />
Image that we want a given component to allow the caller to manually override the background color:
function setBackgroundColor(element, [color]) {
el.style.backgroundColor = color;
}