@senocular - a while ago, as part of your JS Tips of the Day, there was a clever approach for setting CSS styles on elements that you came up with. Do you remember what that is? I’m planning on revising the old tutorial on this, and I want to include your approach as well.
Not sure if there’s anything clever there. I searched through a few of the other tips to see if there was anything else I was doing but nothing jumped out.
Sometimes I will do something like this, maybe something like this is what you remember seeing?
let color = "red"
let fontSize = "2em"
let fontWeight = "bolder"
Object.assign(element.style, {
color,
fontSize,
fontWeight,
})