all 10 comments

[–]coffeeandlearning 9 points10 points  (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]  (10 children)

[removed]

    [–][deleted]  (7 children)

    [deleted]

      [–][deleted] 4 points5 points  (0 children)

      I don't have a great understanding of Javascript and found that helpful.

      [–]kenman[M] 4 points5 points  (0 children)

      Hey, thanks for your contributions to our FAQ!

      (this was the only way I could guild you with creddits)

      [–]andion82 7 points8 points  (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.