Is there any consideration that should be done between using the head or the body to add template tags? Ex:
conste template = document.createElement('template');
// add template content etc.
document.body.appendChild(template);
// or
document.head.appendChild(template);
I just stumble upon a code base that dynamically adds templates to head
and my gut tells me that maybe it isn't the best idea, but maybe it doesn't matter?