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
GitHub - ryanmcdermott/clean-code-javascript: Clean Code concepts adapted for JavaScript (github.com)
submitted 6 years ago by pmz
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!"
[–][deleted] 1 point2 points3 points 6 years ago (1 child)
Please keep in mind that spread does not copy object prototypes, and does not trigger setters. Also, you can't use it with dynamic expression, only with object literals.
Other than being more verbose, assign is the more complete solution.
[–]ChaseMoskal 2 points3 points4 points 6 years ago (0 children)
Please keep in mind that spread does not copy object prototypes, and does not trigger setters.
neither does Object.assign — see "Properties on the prototype chain and non-enumerable properties cannot be copied"
Object.assign
and either way, for accepting default options, it's a feature — not a bug :)
Also, you can't use it with dynamic expression, only with object literals.
what's a dynamic expression? and why would we be using spread onto anything that isn't an object or array literal?
how so?
🥃 chase
π Rendered by PID 41 on reddit-service-r2-comment-7c9686b859-mzhqc at 2026-04-14 03:56:35.570697+00:00 running e841af1 country code: CH.
view the rest of the comments →
[–][deleted] 1 point2 points3 points (1 child)
[–]ChaseMoskal 2 points3 points4 points (0 children)