constructor 这句有什么作用,不写也可以打印成功。

       function Animal(){            this.species = "动物";
        }        function Cat(name,color){            this.name = name;            this.color = color;
        }
        
        Cat.prototype = new Animal();
        Cat.prototype.constructor = Cat;        var cat1 = new Cat("大毛","黄色");        console.log(cat1.species)![图片描述][1]

https://img2.mukewang.com/5c7d32a1000106d706830355.jpg

HUH函数
浏览 501回答 2
2回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Html5