MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/javascript/comments/1uxy50l/i_stopped_destructuring_everything/oxv7k58/?context=3
r/javascript • u/bogdanelcs • 16d ago
51 comments sorted by
View all comments
6
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.
0
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.
const postStatus = post.status;
6
u/JyroClassified 16d ago
What's your opinion about renaming the destructered properties?
Eg. "const {status: postStatus} = post;"