HTML attributes are not case sensitive, but JavaScript property names are.
HTML attribute JS property
--------------------------------------------
data-first-name="" elem.dataset.firstName // "data-" attribute
HTML attribute JS property
--------------------------------------------
class="" elem.className, elem.classList
for="" label.htmlFor
value="" input.defaultValue // `input.value`: user's current input
--------------------------------------------