So I finally stopped dragging my feet all these years and decided to learn JavaScript "properly". One of the most head-scratching elements of the languages design is it's implementation of inheritance. Having experience in Ruby, I was really happy to see closures and dynamic typing; but for the life of me can't figure out what benefits are to be had from object instances using other instances for inheritance.
feedback
|
|
IMO the major benefit of prototypal inheritance is its simplicity. The prototypal nature of the language can confuse people who are classically trained, but it turns out that actually this is a really simple and powerful concept, differential inheritance. You don't need to make classification, your code is smaller, less redundant, objects inherit from other, more general objects. If you think prototypically you will soon notice that you don't need classes... Prototypal inheritance will be much more popular in the near future, the ECMAScript 5th Edition specification introduced the
This new version of the standard is being implemented by all browser vendors, and I think we will start to see more pure prototypal inheritance... | ||||
|
feedback
|
|
Allow me to actually answer the question inline. Prototype inheritance has the following virtues:
It has the following disadvantages however:
I think you can read between the lines above and come up with the corresponding advantages and disadvantages of traditional class/object schemes. There are, of course, more in each area so I'll leave the rest up to other people answering. | |||
|
feedback
|
|
Web Development: Prototypal Inheritance vs. Classical Inheritance http://chamnapchhorn.blogspot.com/2009/05/prototypal-inheritance-vs-classical.html Classical Vs prototypal inheritance - Stack Overflow http://stackoverflow.com/questions/1450582/classical-vs-prototypal-inheritance | |||||||||
feedback
|