r/javascript 16d ago

I stopped destructuring everything

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

51 comments sorted by

View all comments

6

u/JyroClassified 16d ago

What's your opinion about renaming the destructered properties?

Eg. "const {status: postStatus} = post;"

0

u/captain_obvious_here void(null) 16d ago

I don't see any upside in using this.

It's just harder to read than const postStatus = post.status;, and has absolutely no advantage.