__を利用するプロト.継承を実現する

142 ワード

function Animal(){

}

function Dog(){

}

//     
Dog.prototype.__prototype = Animal.prototype;

var dog = new Dog();