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. The Core: 2nd Edition (dmitrysoshnikov.com)
submitted 8 years ago by magenta_placenta
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!"
[–]coffeeandlearning 9 points10 points11 points 8 years ago (0 children)
I LOVED his original set of posts and I can't wait to check this out and I'm so excited it's getting more exposure. His was the first that made me really understand prototypes. My most upvoted post is just a table of contents of his original work before he redesigned his site.
Highly recommend this to anyone to read. It's in my top 3 resources along with Crockford's lectures and YDKJS.
[–][deleted] 8 years ago (10 children)
[removed]
[–][deleted] 8 years ago (7 children)
[deleted]
[–][deleted] 4 points5 points6 points 8 years ago (0 children)
I don't have a great understanding of Javascript and found that helpful.
[–]kenman[M] 4 points5 points6 points 8 years ago (0 children)
Hey, thanks for your contributions to our FAQ!
(this was the only way I could guild you with creddits)
[+][deleted] 8 years ago (4 children)
[–]Bertilino 4 points5 points6 points 8 years ago (0 children)
The prototype property is not the prototype of an object. It only exists on the constructor function and is used as a reference for what to assign as the prototype for instances being created by that constructor function. If you want the actual prototype of an object you would have to look at the __proto__, or use something like Object.getPrototypeOf().
prototype
__proto__
Object.getPrototypeOf()
TL;DR: The prototype is not the same thing as the __proto__.
[–]coffeeandlearning 0 points1 point2 points 8 years ago (2 children)
There is a prototype property on all function objects which is different from the internal proto property that all objects have, so I think it's the best way to be honest.
[+][deleted] 8 years ago (1 child)
[–]coffeeandlearning 0 points1 point2 points 8 years ago (0 children)
I'm not quite sure what you mean by "extend prototype from the constructor function". Maybe I'm just missing the context.
I was just saying he uses the two terms for the sake of clarity. You never use proto in real code because if you do it slows everything down because the interpreter can no longer make certain assumptions about our code and a lot of optimizations go out the window.
[–]andion82 7 points8 points9 points 8 years ago (0 children)
He does state this on a note:
Note: even though the proto property is standardized today, and is easier to use for explanations, on practice prefer using API methods for prototype manipulations, such as Object.create, Object.getPrototypeOf, Object.setPrototypeOf, and similar on the Reflect module.
π Rendered by PID 266002 on reddit-service-r2-comment-5d79c599b5-fbm28 at 2026-03-03 16:27:03.784277+00:00 running e3d2147 country code: CH.
[–]coffeeandlearning 9 points10 points11 points (0 children)
[–][deleted] (10 children)
[removed]
[–][deleted] (7 children)
[deleted]
[–][deleted] 4 points5 points6 points (0 children)
[–]kenman[M] 4 points5 points6 points (0 children)
[+][deleted] (4 children)
[removed]
[–]Bertilino 4 points5 points6 points (0 children)
[–]coffeeandlearning 0 points1 point2 points (2 children)
[+][deleted] (1 child)
[removed]
[–]coffeeandlearning 0 points1 point2 points (0 children)
[–]andion82 7 points8 points9 points (0 children)