function Fruits() {
this.Banana = function() {
this.getColor = function(){
return 'yellow';
};
};
this.Apple= function() {
this.getColor = function(){
return 'red';
};
};
}
var apple = new Fruits.Apple();
console.log(apple.getColor());
这不起作用。我在这里错过了什么?这是对具有嵌套方法的“类”的错误方法吗?
谢谢