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());
これは機能しません。ここで何が恋しかったですか?これは、ネストされたメソッドを持つ「クラス」に対する間違ったアプローチですか?
ありがとう