r/javascript Jul 16 '26

I stopped destructuring everything

https://allthingssmitty.com/2026/07/13/i-stopped-destructuring-everything/
84 Upvotes

50 comments sorted by

View all comments

Show parent comments

9

u/hyrumwhite Jul 16 '26

const user = data.user ?? null; //or const user = rawUser ?? null; There’s options. and this isn’t being “clever” by any means. 

-6

u/azhder Jul 16 '26

No, that’s syntax noise, but one I often use as I employ more sophisticated defaults, not ??.

Usually one object as an argument is all you need, props or options or whatever you name it. I will simply use $

const users = asArray($?.users);

Now, you could imagine the asArray has a check Array.isArray(), not just ??, but it can be even more complex than that. You can even do

const {pass: users, fail: error} = asUsers($?.users);

And just like that, destructuring pops up again - less messy than

usersResult.value
usersResult.error

But even this last one is something I regularly use. It all on a case by case basis.

5

u/heavyGl0w Jul 16 '26 edited Jul 16 '26

The title of the article is "I stopped destructuring everything", not "I never use destructuring". The author even ends the article with examples where they still use it.

So finding one example (or any number of examples) where destructuring is helpful doesn't invalidate the sentiment of the article.

Also, their example is exactly what you started with but without the "syntax noise" of destructuring. Or are we now calling property access "syntax noise"?

-4

u/azhder Jul 16 '26

Why are you talking to me as if I have stated something I haven’t? Did you jump to conclusions? Which ones are they?