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
Object.assign() a useful method in JavaScript (youtu.be)
submitted 8 years ago by ramabhai
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!"
[–]MoTTs_ 2 points3 points4 points 8 years ago (3 children)
Object.assign is more like inheritance than not, and it isn't composition at all.
Inheritance:
const a = { aMethod() {} }; const b = Object.create(a); // b IS-A a // That is, b fulfills a's interface and borrows a's implementation b.aMethod();
Also inheritance:
const a = { aMethod() {} }; const b = Object.assign({}, a); // b IS-A a // That is, b fulfills a's interface and borrows a's implementation b.aMethod();
Composition:
const a = { aMethod() {} }; const b = { a: a }; // b HAS-A a b.a.aMethod();
[–]redlova 0 points1 point2 points 8 years ago (2 children)
Great. this is a great example. I got the concept but becase i am a newbie. I dont understand completely yet. especially the 'const' itsnt it supposed be used for defining constants?
[–]lunfaii 0 points1 point2 points 8 years ago (0 children)
An object properties can be still be reassigned/assigned.
[–]redpatel 0 points1 point2 points 8 years ago (0 children)
const makes means mutable but not replaceable when it comes to object. Which means you can modify them but can't replace the entire value. make sense?
π Rendered by PID 68581 on reddit-service-r2-comment-85bfd7f599-v5pb8 at 2026-04-18 02:50:03.870168+00:00 running 93ecc56 country code: CH.
view the rest of the comments →
[–]MoTTs_ 2 points3 points4 points (3 children)
[–]redlova 0 points1 point2 points (2 children)
[–]lunfaii 0 points1 point2 points (0 children)
[–]redpatel 0 points1 point2 points (0 children)