When using vanilla JS, here is my typical way of creating an element and rendering it on the page:
var span = document.createElement('span');
span.className = 'someClass';
span.innerHTML = 'Lorem ipsum';
document.body.appendChild(span);
With jQuery you can do something like
$('body').append('<span class="someClass">Lorem ipsum</span>')
Is there a more shorthand version available for pure JS?