以下是题目,需要补充代码。自认不才,特来求助各位大神,望指点迷津.
题目是让补全 A 的代码,让这个代码可以跑起来,输出对应的结果
var A = function () {
this.name = 'apple';
}
A.prototype.getName = function () {
return this.name;
}
//补充代码
var B = A.extend({
initialize: function () {
this.superclass.initialize.call(this);
this.total = 3;
},
say: function () {
return '我有' + this.total + '个' + this.getName()
}
});
var b = new B();
console.log(b.say());//我有3个apple;