Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Performing Inheritance in Javascript

What are the ways to implement inheritance in JavaScript Which one is the best and why?

share|improve this question
1  

marked as duplicate by Matthew Flaschen, Quentin, CMS, Vivin Paliath, Graviton Jul 24 '10 at 1:59

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

I can think of only one: prototyping, with which you can do polymorphism, a bit of encapsulation and inheritance. That's the only way inheritance* is supported by JavaScript, but quite successfully and to quite a deep extend. See this nice and easy read on OO in JavaScript.

An excellent read, too, is Object Oriented JavaScript by Stoyan Stefanov, I can highly recommend it to you, your JS will never look the same again.

* EDIT: this is a special type of OO: prototype based programming, and JS supports it well, but as commented by Adam, you can trick your way through if you want to do it differently (advice: don't).

share|improve this answer
1  
There are other methods, but they are just trickery that attempts to hide JS's true prototypal inheritence. It's best not to fight JS. Playing by its rules can be uncomfortable for those who are used to C++/C#/Java-like inheritance schemes, but not embracing JS for what it is would probably be a mistake. – Adam Crossland Jul 23 '10 at 16:24
+1 Adam, I agree, esp. with "don't fight JS". I encorporated your comment in my answer, hope you don't mind. – Abel Jul 23 '10 at 16:28

Doug Crockford lists several mechanisms for inheritance in his "Javascript: The Good Parts". I'd recommend reading that for a deep understanding. The material might also be available on line.

share|improve this answer
His discussion of inheritance is one of the better parts of The Good Parts. Generally an excellent book, but you can't just take the whole thing at face-value. – Adam Crossland Jul 23 '10 at 16:26

Since JavaScript is a class-free, object-oriented language, it uses prototypal inheritance. Read Douglas Crockford's "Prototypal Inheritance in JavaScript" to learn why: http://javascript.crockford.com/prototypal.html

share|improve this answer
Guess you missed duffymo's answer here, which says the same: stackoverflow.com/questions/3320185/… ;-) – Abel Jul 23 '10 at 16:32

Not the answer you're looking for? Browse other questions tagged or ask your own question.