Inheritance in javascript
In Java Script , you do not see classes as in traditional programming like Java/C++. So does java script supports inheritance ?
Answer : Yes.
Java script uses prototype inheritance instead of classical inheritance. Some more helpful links and post to get better understanding.
http://phrogz.net/js/classes/OOPinJS2.html
http://www.crockford.com/javascript/inheritance.html








