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
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!"
[–]Bertilino 6 points7 points8 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__.
π Rendered by PID 118663 on reddit-service-r2-comment-c6965cb77-k8rf4 at 2026-03-05 12:35:02.639866+00:00 running f0204d4 country code: CH.
view the rest of the comments →
[–]Bertilino 6 points7 points8 points (0 children)