Hmm. not sure. Do you mean this?
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,
})
Edit: I just found a tip that does this ^: JS Tip of the Day: MutationObserver
P.S. I noticed a few broken links in the Tips page. I didn’t check them all but these are the ones I found that were broken or needed fixing:
- Reduce Code with Destructuring → JS Tip of the Day: Reduce Code with Destructuring
- Numeric literal formats → JS Tip of the Day: Numeric Literal Formats
- Proxy Objects → JS Tip of the Day: Proxy Objects
- Detecting Dark Mode → JS Tip of the Day: Detecting Dark Mode