I've always wondered how verbose and cumbersome some very common web constructions are. One of this is getElementBy..., which is used as a central interface between Javascript and HTML



const myElement = document.getElementById("demo");
myElement.style.color = "red";






This are 81 bytes pure text plus one constant in the global namespace,...