createElement and Object.assign
const el = document.createElement('div');
Object.assign(el.style, {
position: 'absolute',
left: '100px',
top: '100px',
width: '30px',
height: '30px',
background: 'linear-gradient(black, red)',
transform: 'rotate(15deg)'
});
document.body.appendChild(el);
Fast and easy way to set many styles on a DOM node. Click/tap the