this post was submitted on 01 Mar 2024
149 points (87.4% liked)

Programmer Humor

19198 readers
1578 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 5 points 6 months ago* (last edited 6 months ago)

I hate that the convention for naming React.useState variables is [color, setColor], rather than [color, colorSet]. After I declare 'color', I want to copy/paste that variable and append 'Set', rather than copy the variable then writing 'set' then pasting then navigating to the 4th character then flipping the case.

Granted there could be some ambiguity if there was a variable containing a unique collection (aka set) but that is far less common than declaring a useState variable. I'd even settle for appending 'SET' to quell the confusion.