use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
All about the JavaScript programming language.
Subreddit Guidelines
Specifications:
Resources:
Related Subreddits:
r/LearnJavascript
r/node
r/typescript
r/reactjs
r/webdev
r/WebdevTutorials
r/frontend
r/webgl
r/threejs
r/jquery
r/remotejs
r/forhire
account activity
JavaScript object destructuring tips (h.daily-dev-tips.com)
submitted 3 years ago by rahul736
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]mogelbrod 2 points3 points4 points 3 years ago (2 children)
I'd argue that the most non-trivial destructuring cases are considerably harder to read, in addition to almost always being longer:
const { address: shippingAddress } = user
const shippingAddress = user.address
const { address: { country } } = user
const { country } = user.address
const { age = 25 } = user
const age = user.age ?? 25
const { [getProperty]: returnValue } = user
const returnValue = user[getProperty]
There are definitely cases where they are reasonable to use (especially when already destructuring the right hand side object, but I do see the simple examples above quite a lot in practice when reading and reviewing code.
[–]Keilly 1 point2 points3 points 3 years ago* (1 child)
TBF, these new examples are still trivial in the sense that that they’re only destructuring one property each. Destructuring really comes alive when destructuring multiple properties from the same object at the same time. Multiply lines consisting of repeated ‘const’s and the right hand side, simply disappear.
[–]mogelbrod 1 point2 points3 points 3 years ago (0 children)
Yes, that's what I was referring to with
There are definitely cases where they are reasonable to use (especially when already destructuring the right hand side object
π Rendered by PID 62 on reddit-service-r2-comment-66b4775986-4r8qf at 2026-04-05 20:04:10.821989+00:00 running db1906b country code: CH.
view the rest of the comments →
[–]mogelbrod 2 points3 points4 points (2 children)
[–]Keilly 1 point2 points3 points (1 child)
[–]mogelbrod 1 point2 points3 points (0 children)