Animal={} Cat=Object.create(Animal) Cat.meow=function(){return "Cat "+this.name+" is saying meow"} cat=Object.create(Cat) cat.name="Garfield" alert(cat.meow())