猿问

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]

HUH函数
浏览 501回答 2
2回答
随时随地看视频慕课网APP

相关分类

Html5
我要回答