js原型式继承的一个问题!

                function Animate() {
            this.age = 12
        }
        Animate.prototype = {
            say() {
                console.log(this.age)
            }
        }
        new Animate().say()
        function Dog() {}
        Dog.prototype = Animate.prototype// 请问这个也可以用Object.create(Animate.prototype),那么用和不用有什么区别吗,求解
        let dog = new Dog()
        dog.say()


HUH函数
浏览 622回答 2
2回答

四季花海

1.首先Animate.prototype 代表Animate的原型 而Object.create(Animate.prototype) 创建Animate的原型的子类对象 this.age是在Animate本身对象中,而非在原型中,所以 Dog.prototype = Animate.prototype要改成Dog.prototype = new Animate();
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript