I've noticed that I can use a
to reference an element with an ID of "a" but I'm not sure if there's a name for this "method".
For example this would set the div's text to "b c".
<div id="a" class="b c"></div>
<script>a.innerHTML = a.classList</script>