function Mammal(name){
   this.name = name;
}
Mammal.prototype.displayName = function(){
   return this.name;
}
function Organism(name){
   this.orgName = name;
}
Organism.prototype.print = function(){
    return this.orgName;
}
Organism.prototype = new Mammal();  //Organism inherits Mammal
//Testing
var o = new Organism('Human');
o.print() 
This comes as undefined. Why? this should show since it is a method of class Organism. print() does not show up in the object
 
     
    