首页题库练习题目详情
Web程序设计单选题中等

以下哪项是构造函数继承的正确写法?

AChild.prototype = new Parent();
BChild.prototype = Parent.prototype;
CChild.prototype = Object.create(Parent.prototype);
D以上都是